-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·35 lines (31 loc) · 1.72 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
###############################################################################
# #
# Makefile #
# ======== #
# #
# Version: 1.2.5 #
# Date : 07.02.18 #
# Author : Peter Weissig #
# #
# Source code was taken from: #
# https://github.com/RoboAG/avr_robolib #
# #
# See also: #
# https://github.com/RoboSAX/avr_spielfeld #
###############################################################################
SUBDIRS = RoboSAX
include Makefile.global
###############################################################################
all_init:
$(call echoHeader,)
$(call echoHeader, "### building $(NAME_GIT_THIS) ###")
$(call echoHeader, " ### sub projects: $(foreach dir,$(SUBDIRS),$(dir),) ###")
$(SUBDIRS):
$(MAKE) -C $@
clean:
@echo
@echo "### clean $(NAME_GIT_THIS) ###"
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
###############################################################################