tweak copyright assertion
[fw/altos] / src / Makefile
1 #
2 # AltOS build
3 #
4 #
5 CC=sdcc
6
7 SUBDIRS=telemetrum-v0.2 teledongle-v0.2 telemetrum-v0.1-sky telemetrum-v0.1-sirf teledongle-v0.1 tidongle test
8
9 all: all-recursive
10
11 RECURSIVE_TARGETS = all-recursive clean-recursive install-recursive
12
13 $(RECURSIVE_TARGETS):
14         @target=`echo $@ | sed 's/-recursive//'`; \
15         for subdir in $(SUBDIRS); do \
16                 echo "Making $$target in $$subdir"; \
17                 (cd $$subdir && $(MAKE) $$target) || exit 1; \
18         done
19
20 distclean:      clean
21
22 clean: clean-recursive
23
24 install: install-recursive
25
26 uninstall: