|
Revision 620, 330 bytes
(checked in by anthony_rowe, 4 months ago)
|
|
moved files
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | SUBDIRS=lpc2106-cmucam3 lpc2103-tcm8240 virtual-cam |
|---|
| 2 | #SUBDIRS=lpc2106-cmucam3 |
|---|
| 3 | #SUBDIRS=virtual-cam |
|---|
| 4 | |
|---|
| 5 | # Build rules |
|---|
| 6 | all: |
|---|
| 7 | @list='$(SUBDIRS)'; set -e; for subdir in $$list; do \ |
|---|
| 8 | $(MAKE) -C $$subdir; \ |
|---|
| 9 | done |
|---|
| 10 | |
|---|
| 11 | clean: |
|---|
| 12 | @list='$(SUBDIRS)'; set -e; for subdir in $$list; do \ |
|---|
| 13 | $(MAKE) -C $$subdir clean; \ |
|---|
| 14 | done |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | .PHONY: all clean |
|---|