diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2005-10-17 12:24:08 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2005-10-17 12:24:08 +0000 |
commit | 15bee86fc3df92f0bbdf0a17eac3915965983396 (patch) | |
tree | 6a621c91d22f093f023a29c72252ea47ba9fb32a /obsolete-buildroot/make/gdbserver.mk | |
parent | 487c71693d31836144cd0a55ae73b76c64f71561 (diff) | |
download | mtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.zip mtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.gz mtk-20170518-15bee86fc3df92f0bbdf0a17eac3915965983396.tar.bz2 |
removed the old directories, too.. cleanup is ready, yay
SVN-Revision: 2130
Diffstat (limited to 'obsolete-buildroot/make/gdbserver.mk')
-rw-r--r-- | obsolete-buildroot/make/gdbserver.mk | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/obsolete-buildroot/make/gdbserver.mk b/obsolete-buildroot/make/gdbserver.mk deleted file mode 100644 index 1ab44a2..0000000 --- a/obsolete-buildroot/make/gdbserver.mk +++ /dev/null @@ -1,53 +0,0 @@ -############################################################# -# -# gdbserver -# -############################################################# - -#Use GDB_DIR/etc values from gdb.mk -#Build gdbserver in a dir outside of the main gdb tree -GDB_WDIR:=$(BUILD_DIR)/gdbserver - - -$(GDB_WDIR)/.configured: $(GDB_DIR)/.unpacked - mkdir -p $(GDB_WDIR) - (cd $(GDB_WDIR); rm -rf config.cache; \ - $(TARGET_CONFIGURE_OPTS) \ - $(GDB_DIR)/gdb/gdbserver/configure \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sbindir=/usr/sbin \ - --libexecdir=/usr/lib \ - --sysconfdir=/etc \ - --datadir=/usr/share \ - --localstatedir=/var \ - --mandir=/usr/man \ - --infodir=/usr/info \ - --includedir=$(STAGING_DIR)/include \ - $(DISABLE_NLS) \ - --without-uiout --disable-gdbmi \ - --disable-tui --disable-gdbtk --without-x \ - --without-included-gettext \ - ); - touch $(GDB_WDIR)/.configured - -$(GDB_WDIR)/gdbserver: $(GDB_WDIR)/.configured - $(MAKE) CC=$(TARGET_CC) -C $(GDB_WDIR) - $(STRIP) $(GDB_WDIR)/gdbserver - -$(TARGET_DIR)/usr/bin/gdbserver: $(GDB_WDIR)/gdbserver - install -c $(GDB_WDIR)/gdbserver $(TARGET_DIR)/usr/bin/gdbserver - rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ - $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc - -gdbserver: $(TARGET_DIR)/usr/bin/gdbserver - -gdbserver-clean: - $(MAKE) -C $(GDB_WDIR) clean - -gdbserver-dirclean: - rm -rf $(GDB_WDIR) - |