17 lines
388 B
Makefile
17 lines
388 B
Makefile
|
|
# Programs that live in subdirectories, and have makefiles of their own.
|
|
#
|
|
SUBDIR = baremetal dip duinomite explorer16 max32 max32-eth maximite meb \
|
|
pinguino-micro starter-kit ubw32 ubw32-uart usbboot
|
|
|
|
default:
|
|
|
|
all:
|
|
-for i in $(SUBDIR); do make -C $$i all; done
|
|
|
|
install:
|
|
|
|
clean:
|
|
-for i in $(SUBDIR); do make -C $$i clean; done
|
|
find .. -name \*~ | xargs rm -f
|