4fac7af2df6b0a5351aadbdafc343367e39f5496
[openwrt.git] / package / gdbserver / Makefile
1 # Copyright (C) 2006 OpenWrt.org
2 #
3 # This is free software, licensed under the GNU General Public License v2.
4 # See /LICENSE for more information.
5 #
6 # $Id$
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=gdbserver
11 PKG_VERSION:=6.3
12 PKG_RELEASE:=1
13
14 GDB_DIR:=$(BUILD_DIR_TOOLCHAIN)/gdb-$(PKG_VERSION)
15
16 include $(INCLUDE_DIR)/package.mk
17
18 define Package/gdbserver
19   SECTION:=utils
20   CATEGORY:=Utilities
21   DEPENDS:=@GDB
22   TITLE:=Remote Server for the GNU Debugger
23 endef
24
25 define Package/gdbserver/description
26  GDBSERVER is a program that allows you to run GDB on a different machine 
27  than the one which is running the program being debugged.
28 endef
29
30 define Build/Configure
31         (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
32                 $(TARGET_CONFIGURE_OPTS) \
33                 CFLAGS="$(TARGET_CFLAGS)" \
34                 $(GDB_DIR)/gdb/gdbserver/configure \
35                   --target=$(GNU_TARGET_NAME) \
36                   --host=$(GNU_TARGET_NAME) \
37                   --build=$(GNU_HOST_NAME) \
38                   --program-prefix="" \
39                   --program-suffix="" \
40                   --prefix=/usr \
41                   --exec-prefix=/usr \
42                   --bindir=/usr/bin \
43                   --sbindir=/usr/sbin \
44                   --libexecdir=/usr/lib \
45                   --sysconfdir=/etc \
46                   --datadir=/usr/share \
47                   --localstatedir=/var \
48                   --mandir=/usr/man \
49                   --infodir=/usr/info \
50                   $(DISABLE_NLS) \
51                   $(DISABLE_LARGEFILE) \
52         );
53 endef
54
55 define Build/Compile
56         rm -rf $(PKG_INSTALL_DIR)
57         mkdir -p $(PKG_INSTALL_DIR)
58         $(MAKE) -C $(PKG_BUILD_DIR) \
59                 DESTDIR="$(PKG_INSTALL_DIR)" \
60                 install
61 endef
62
63 define Package/gdbserver/install        
64         $(INSTALL_DIR) $(1)/usr/bin
65         $(CP) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
66 endef
67
68 $(eval $(call BuildPackage,gdbserver))
69