altos: Configure packet size from send/recv parameters.
[fw/altos] / src / Makefile
1 #
2 # AltOS build
3 #
4 #
5 CC=sdcc
6
7 include Version
8
9 SUBDIRS=\
10         telemetrum-v1.1 telemetrum-v1.0 \
11         teledongle-v0.2 teledongle-v0.1 \
12         telemini-v0.1 telenano-v0.1 \
13         telemetrum-v0.1-sky telemetrum-v0.1-sirf \
14         tidongle test
15
16 all: all-recursive
17
18 RECURSIVE_TARGETS = all-recursive clean-recursive install-recursive
19
20 $(RECURSIVE_TARGETS):
21         @target=`echo $@ | sed 's/-recursive//'`; \
22         for subdir in $(SUBDIRS); do \
23                 echo "Making $$target in $$subdir"; \
24                 (cd $$subdir && $(MAKE) $$target) || exit 1; \
25         done
26
27 distclean:      clean
28
29 clean: clean-recursive
30
31 install: install-recursive
32
33 uninstall: