summaryrefslogtreecommitdiff
path: root/toolchain/newlib/Makefile
blob: affbe239aa9858f9fbba64a90ae51ebb020a39b6 (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
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(ADK_TOPDIR)/rules.mk
include ../rules.mk
include Makefile.inc
include ${ADK_TOPDIR}/mk/buildhlp.mk

$(WRKBUILD)/.configured:
	(cd $(WRKBUILD); \
		CC='' \
		CFLAGS='' \
		LDFLAGS='' \
		./configure --prefix=/usr \
		--target=$(GNU_TARGET_NAME) \
		--enable-newlib-io-long-long \
		--enable-newlib-register-fini \
		--disable-newlib-supplied-syscalls \
		--disable-nls \
	)
	touch $@

$(WRKBUILD)/.compiled:
	PATH='$(HOST_PATH)' $(MAKE) -C $(WRKBUILD) \
		CC='' \
		CFLAGS='$(TARGET_CFLAGS)' \
		all
	touch $@

$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
	PATH='$(HOST_PATH)' $(MAKE) -C $(WRKBUILD) \
		CC='' \
		CFLAGS='$(TARGET_CFLAGS)' \
		DESTDIR=$(STAGING_TARGET_DIR) \
		install
	touch $@

include ${ADK_TOPDIR}/mk/toolchain.mk