set the lock the task is waiting on, and re-add spinning tasks when a lock is released
[AROS.git] / tools / sdk / mmakefile.src
blobae2b263aeea94382865ced218b38341ed7ecd8b0
1 # Copyright © 2010, 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 $(AROS_LIB)/* $(SDKLIBDIR)
15         $(CP) -a $(SRCDIR)/tools/collect-aros/* $(SDKTOOLDIR)/collect-aros
16         $(CP) -a $(TOP)/tools/collect-aros/* $(SDKTOOLDIR)/collect-aros
17         $(CP) -a $(SRCDIR)/$(CURDIR)/scripts $(SDKDIR)
18         $(CP) $(SRCDIR)/$(CURDIR)/AROS-SDK-Install $(SRCDIR)/LICENSE $(SRCDIR)/ACKNOWLEDGEMENTS $(SDKDIR)
20 #MM
21 sdk-setup ::
22         %mkdirs_q $(SDKDIR) $(SDKINCDIR) $(SDKLIBDIR) $(SDKTOOLDIR)/collect-aros
24 #MM
25 clean ::
26         $(RM) $(SDKDIR)
28 .PHONY: setup sdk clean