aboutsummaryrefslogtreecommitdiff
path: root/examples/other/Makefile
diff options
context:
space:
mode:
authorThomas Otto2010-03-28 15:52:49 +0200
committerThomas Otto2010-03-28 15:52:49 +0200
commit9dc0af94b064ad80b55433a1cdeb4ccf3db300ca (patch)
treeb88fee7ab35ef3d59689959e198d73b835a03815 /examples/other/Makefile
parent97e27b2430a2ba2294c772408171c807520a070c (diff)
Added dma_mem2mem example.
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 4f2bcc9..f4b73a7 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
+all: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem
i2c_stts75_sensor:
@printf " BUILD examples/other/i2c_stts75_sensor\n"
@@ -34,11 +34,17 @@ adc_temperature_sensor:
@printf " BUILD examples/other/adc_temperature_sensor\n"
$(Q)$(MAKE) -C adc_temperature_sensor
+dma_mem2mem:
+ @printf " BUILD examples/other/dma_mem2mem\n"
+ $(Q)$(MAKE) -C dma_mem2mem
+
clean:
@printf " CLEAN examples/other/i2c_stts75_sensor\n"
$(Q)$(MAKE) -C i2c_stts75_sensor clean
@printf " CLEAN examples/other/adc_temperature_sensor\n"
$(Q)$(MAKE) -C adc_temperature_sensor clean
+ @printf " CLEAN examples/other/dma_mem2mem\n"
+ $(Q)$(MAKE) -C dma_mem2mem clean
-.PHONY: i2c_stts75_sensor adc_temperature_sensor clean
+.PHONY: i2c_stts75_sensor adc_temperature_sensor dma_mem2mem clean