summaryrefslogtreecommitdiff
path: root/toolchain/gdb/Makefile
blob: 32e0593342e459b97badecbdc20a47f23fa98bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# $Id$
#-
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(TOPDIR)/rules.mk
include ../rules.mk
include Makefile.inc

include ${TOPDIR}/mk/buildhlp.mk

$(WRKBUILD)/.headers:
$(WRKBUILD)/.configure_done:
	(cd $(WRKBUILD); \
		gdb_cv_func_sigsetjmp=yes \
		./configure \
		--prefix=$(STAGING_TOOLS) \
		--build=$(GNU_HOST_NAME) \
		--host=$(GNU_HOST_NAME) \
		--target=$(REAL_GNU_TARGET_NAME) \
		--disable-dependency-tracking \
		--without-uiout \
		--enable-gdbmi \
		--disable-gdbtk \
		--without-included-gettext \
		--disable-libtool-lock \
		--disable-nls \
		--with-curses \
		--enable-threads \
		--disable-sim \
		--disable-tui \
		--disable-werror \
		--without-x \
	);
	touch $@

$(WRKBUILD)/.compiled: 
	$(MAKE) -C $(WRKBUILD) CFLAGS="-fPIC ${HOSTCFLAGS}"
	touch $@

$(WRKBUILD)/.installed: 
	install -c $(WRKBUILD)/gdb/gdb $(TARGET_CROSS)gdb
	cd $(STAGING_TOOLS)/bin && \
	ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-gdb
	touch $@

include ${TOPDIR}/mk/toolchain.mk