buildrootschalter/make/gdbserver.mk
Eric Andersen a88a16700e Some updates from Andrew May adding gdbserver and adjusting gdb
in the hope of better cross-compiling support
2002-11-15 09:41:03 +00:00

40 lines
1.1 KiB
Makefile

#############################################################
#
# gdb
#
#############################################################
GDB_SITE:=ftp://ftp.gnu.org/gnu/gdb/
GDB_DIR:=$(BUILD_DIR)/gdb-5.2
GDB_SOURCE:=gdb-5.2.tar.gz
GDB_WDIR:=$(BUILD_DIR)/gdbserver
$(GDB_WDIR)/.configured: $(GDB_DIR)/.unpacked
(cd $(GDB_WDIR); rm -rf config.cache; CC=$(TARGET_CC1) \
AR=$(TARGET_CROSS)ar NM=$(TARGET_CROSS)nm \
LD=$(TARGET_CROSS)ld AS=$(TARGET_CROSS)as \
$(GDB_DIR)/gdb/gdbserver/configure --prefix=/usr \
--target=$(GNU_TARGET_NAME) \
--includedir=$(STAGING_DIR)/include \
--disable-nls --without-uiout --disable-gdbmi \
--disable-tui --disable-gdbtk --without-x \
--without-included-gettext);
touch $(GDB_WDIR)/.configured
$(GDB_DIR)/gdb/gdbserver/gdbserver: $(GDB_WDIR)/.configured
make CC=$(TARGET_CC1) -C $(GDB_WDIR)
$(STRIP) $(GDB_WDIR)/gdbserver
$(TARGET_DIR)/usr/bin/gdbserver: $(GDB_DIR)/gdb/gdbserver/gdbserver
install -c $(GDB_WDIR)/gdbserver $(TARGET_DIR)/usr/bin/gdbserver
gdbserver: $(TARGET_DIR)/usr/bin/gdbserver
gdbserver-clean:
make -C $(GDB_WDIR) clean
gdbserver-dirclean:
rm -rf $(GDB_WDIR)