aboutsummaryrefslogtreecommitdiff
path: root/examples/other/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/other/Makefile')
-rw-r--r--examples/other/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/other/Makefile b/examples/other/Makefile
index f4b73a7..208578d 100644
--- a/examples/other/Makefile
+++ b/examples/other/Makefile
@@ -24,7 +24,7 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
-all: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem
+all: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem timer_interrupt
i2c_stts75_sensor:
@printf " BUILD examples/other/i2c_stts75_sensor\n"
@@ -38,6 +38,10 @@ dma_mem2mem:
@printf " BUILD examples/other/dma_mem2mem\n"
$(Q)$(MAKE) -C dma_mem2mem
+timer_interrupt:
+ @printf " BUILD examples/other/timer_interrupt\n"
+ $(Q)$(MAKE) -C timer_interrupt
+
clean:
@printf " CLEAN examples/other/i2c_stts75_sensor\n"
$(Q)$(MAKE) -C i2c_stts75_sensor clean
@@ -45,6 +49,8 @@ clean:
$(Q)$(MAKE) -C adc_temperature_sensor clean
@printf " CLEAN examples/other/dma_mem2mem\n"
$(Q)$(MAKE) -C dma_mem2mem clean
+ @printf " CLEAN examples/other/timer_interrupt\n"
+ $(Q)$(MAKE) -C timer_interrupt clean
-.PHONY: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem clean
+.PHONY: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem timer_interrupt clean