aboutsummaryrefslogtreecommitdiff
path: root/examples/other/Makefile
diff options
context:
space:
mode:
authorThomas Otto2010-04-13 22:33:52 +0200
committerThomas Otto2010-04-13 22:33:52 +0200
commit7c32f6333224eff28c2f5bb5725dcb47fd0084ab (patch)
treef5591653d36120b01b84ed9a747eb74323ffd462 /examples/other/Makefile
parent905b5112b69b83acac1a6f896d363da4d2e7c648 (diff)
Added little systick example.
Diffstat (limited to 'examples/other/Makefile')
-rw-r--r--examples/other/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/other/Makefile b/examples/other/Makefile
index 208578d..ac70828 100644
--- a/examples/other/Makefile
+++ b/examples/other/Makefile
@@ -42,6 +42,10 @@ timer_interrupt:
@printf " BUILD examples/other/timer_interrupt\n"
$(Q)$(MAKE) -C timer_interrupt
+systick:
+ @printf " BUILD examples/other/systick\n"
+ $(Q)$(MAKE) -C systick
+
clean:
@printf " CLEAN examples/other/i2c_stts75_sensor\n"
$(Q)$(MAKE) -C i2c_stts75_sensor clean
@@ -51,6 +55,8 @@ clean:
$(Q)$(MAKE) -C dma_mem2mem clean
@printf " CLEAN examples/other/timer_interrupt\n"
$(Q)$(MAKE) -C timer_interrupt clean
+ @printf " CLEAN examples/other/systick\n"
+ $(Q)$(MAKE) -C systick clean
-.PHONY: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem timer_interrupt clean
+.PHONY: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem timer_interrupt systick clean