diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 06:20:27 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 06:29:12 +0100 |
commit | 6c17623845a0d42285d77bdd8bbf177badf5b9f6 (patch) | |
tree | 3db8b0fa214264ac089d16bbcf4a3c533b8d7629 /Makefile | |
parent | e9b4b3d26eae1a07c9c2d948e51250792beea075 (diff) |
Shuffled a few configuration items around, and added a barebone demo source code.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,14 +1,16 @@ +TARGET = demo.bin +LIBS = -LFreeRTOS -Larch -lFreeRTOS -larch + export ROOTDIR = $(CURDIR) -include $(ROOTDIR)/common.mk +include common.mk -all: libs +all: libs $(TARGET) -clean: +clean: clean-generic $(MAKE) -C FreeRTOS clean $(MAKE) -C arch clean - .PHONY: libs FreeRTOS arch libs: FreeRTOS arch @@ -19,3 +21,6 @@ FreeRTOS: arch: $(MAKE) -C arch +include FreeRTOS/config.mk +include arch/config.mk +include target-rules.mk |