-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·37 lines (31 loc) · 1.55 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
###############################################################################
# #
# Makefile #
# ======== #
# #
# Version: 1.0.0 #
# Date : 22.07.19 #
# Author : Peter Weissig #
# #
# See also: #
# https://github.com/RoboSAX/avr_omnibot #
###############################################################################
SUBDIRS = 2014/ \
\
devel/peter/001_test_display/ \
\
devel/alex/01_display/ devel/alex/02_buttons/
###############################################################################
.PHONY: all clean $(SUBDIRS)
all: $(SUBDIRS)
$(SUBDIRS):
@echo "### compiling $@ ###"
$(MAKE) -C $@ -f "$$ROBOLIB_MAKEFILE"
clean:
@echo
@echo "### clean ###"
@for dir in $(SUBDIRS); do \
echo "# clean $$dir #"; \
$(MAKE) clean -C $$dir -f "$$ROBOLIB_MAKEFILE"; \
done
###############################################################################