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.
7 include $(TOPDIR
)/rules.mk
13 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
14 PKG_SOURCE_URL
:=@GNU
/gdb
15 PKG_MD5SUM
:=c9da266b884fb8fa54df786dfaadbc7a
17 include $(INCLUDE_DIR
)/package.mk
22 DEPENDS
:=+libreadline
+libncurses
26 define Package
/gdbserver
29 TITLE
:=Remote server for GNU Debugger
32 define Package
/gdb
/description
36 define Package
/gdbserver
/description
37 GDBSERVER is a program that allows you to run GDB on a different machine
38 than the one which is running the program being debugged.
42 --with-system-readline
45 ac_cv_search_tgetent
="$(TARGET_LDFLAGS) -lncurses -lreadline"
48 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
49 DESTDIR
="$(PKG_INSTALL_DIR)" \
50 CPPFLAGS
="$(TARGET_CPPFLAGS)" \
54 define Package
/gdb
/install
55 $(INSTALL_DIR
) $(1)/usr
/bin
56 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/gdb
$(1)/usr
/bin
/
59 define Package
/gdbserver
/install
60 $(INSTALL_DIR
) $(1)/usr
/bin
61 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/gdbserver
$(1)/usr
/bin
/
64 $(eval
$(call BuildPackage
,gdb
))
65 $(eval
$(call BuildPackage
,gdbserver
))