1 # Copyright (C) 2006-2009 OpenWrt.org
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
15 PKG_SOURCE_URL
:=@GNU
/gdb
16 PKG_MD5SUM
:=c9da266b884fb8fa54df786dfaadbc7a
18 include $(INCLUDE_DIR
)/package.mk
23 DEPENDS
:=+libreadline
+libncurses
27 define Package
/gdbserver
30 TITLE
:=Remote server for GNU Debugger
33 define Package
/gdb
/description
37 define Package
/gdbserver
/description
38 GDBSERVER is a program that allows you to run GDB on a different machine
39 than the one which is running the program being debugged.
43 --with-system-readline
46 ac_cv_search_tgetent
="$(TARGET_LDFLAGS) -lncurses -lreadline"
49 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
50 DESTDIR
="$(PKG_INSTALL_DIR)" \
51 CPPFLAGS
="$(TARGET_CPPFLAGS)" \
55 define Package
/gdb
/install
56 $(INSTALL_DIR
) $(1)/usr
/bin
57 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/gdb
$(1)/usr
/bin
/
60 define Package
/gdbserver
/install
61 $(INSTALL_DIR
) $(1)/usr
/bin
62 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/gdbserver
$(1)/usr
/bin
/
65 $(eval
$(call BuildPackage
,gdb
))
66 $(eval
$(call BuildPackage
,gdbserver
))