- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
18 lines (16 loc) · 438 Bytes
/
Copy pathMakefile
File metadata and controls
18 lines (16 loc) · 438 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all : apps modules
clean : apps_clean modules_clean
appsmodulesapps_cleanmodules_clean :
$(MAKE) -C ex01_periodic $@
$(MAKE) -C ex02_twoper $@
$(MAKE) -C ex03_variable $@
$(MAKE) -C ex04_fifo $@
$(MAKE) -C ex05_isr $@
$(MAKE) -C ex06_shm $@
$(MAKE) -C ex07_sem $@
$(MAKE) -C ex08_rcservo $@
$(MAKE) -C ex09_ledclock $@
$(MAKE) -C ex10_stack $@
$(MAKE) -C ex11_jitter $@
$(MAKE) -C ex12_math $@
$(MAKE) -C ex13_comedi $@