add initial support for the crisarchitecture used on foxboards to openwrt
[openwrt/openwrt.git] / target / linux / etrax-2.6 / image / e100boot / src / cbl / Makefile
1 #
2 # Makefile to generate .ima files for e100boot
3 #
4 # Hacked by ronny, rehacked by ronny
5 #
6 # $Id: Makefile,v 1.26 2003/03/13 14:18:31 cii Exp $
7 #
8
9 DIRS := net net_noleds ser ser_noleds
10
11 all: $(DIRS)
12 @for d in $(DIRS); do \
13 echo -e "\n### Making $$d"; \
14 make -C $$d || exit; \
15 done
16 @echo "***************************************************************"
17 @./free_size
18 @echo "***************************************************************"
19
20 clean:
21 rm -f *.ima
22 @for d in $(DIRS); do \
23 echo -e "\n### Cleaning $$d"; \
24 make -C $$d clean || exit; \
25 done;