Modify all base apps Makefiles according to the new subdirectory scheme
authorNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 9 Sep 2015 20:11:58 +0000 (22:11 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 8 Feb 2023 02:29:47 +0000 (03:29 +0100)
cc1101/Makefile

index 86e0d12..954c63f 100644 (file)
@@ -1,11 +1,13 @@
-# Makefile for GPIO Demo Module apps
+# Makefile for "base" apps
+# This includes apps for the GPIO Demo Module and for the LPC1224-BO board.
 
+MODULE = $(shell basename $(shell cd .. && pwd && cd -))
 NAME = $(shell basename $(CURDIR))
 
 .PHONY: $(NAME).bin
 $(NAME).bin:
-       @make -C ../.. --no-print-directory NAME=$(NAME) apps/$(NAME)/$@
+       @make -C ../../.. --no-print-directory NAME=$(NAME) MODULE=$(MODULE) apps/$(MODULE)/$(NAME)/$@
 
 clean mrproper:
-       @make -C ../.. --no-print-directory $@
+       @make -C ../../.. --no-print-directory $@