Check target compiler for -iquote instead of host compiler.
[cake.git] / tools / sdk / mmakefile.src
blob65c98b34da941e74e086970c0a213791fef6aaa9
1 # Copyright © 2003, The AROS Development Team. All rights reserved.
2 # $Id$
4 include $(TOP)/config/make.cfg
6 SDKDIR     := $(AROSDIR)/../AROS-SDK
7 SDKINCDIR  := $(AROSDIR)/../AROS-SDK/$(AROS_TARGET_CPU)/include
8 SDKLIBDIR  := $(AROSDIR)/../AROS-SDK/$(AROS_TARGET_CPU)/lib
9 SDKTOOLDIR := $(AROSDIR)/../AROS-SDK/tools
11 #MM sdk : sdk-setup includes linklibs
12 sdk:
13         $(CP) -a $(AROS_INCLUDES)/* $(SDKINCDIR)
14         $(CP) -a $(LIBDIR)/* $(SDKLIBDIR)
15         $(CP) -a $(TOP)/tools/collect-aros/* $(SDKTOOLDIR)/collect-aros
16         $(CP) -a scripts $(SDKDIR)
17         $(CP) AROS-SDK-Install $(TOP)/LICENSE $(TOP)/ACKNOWLEDGEMENTS $(SDKDIR)
19 #MM
20 sdk-setup ::
21         %mkdirs_q $(SDKDIR) $(SDKINCDIR) $(SDKLIBDIR) $(SDKTOOLDIR)/collect-aros
23 #MM
24 clean ::
25         $(RM) $(SDKDIR)
27 .PHONY: setup sdk clean