mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-01 06:29:23 +00:00
3f88f92d11
git-svn-id: http://svn.code.sf.net/p/netboot65/code@330 93682198-c243-4bdb-bd91-e943c89aac3b
62 lines
763 B
Makefile
62 lines
763 B
Makefile
|
|
.PHONY: ip65 drivers test clean distclean kipperterm2 examples carts basic wiznet a2
|
|
|
|
|
|
all: ip65 drivers test carts examples basic kipperterm2 wiznet a2
|
|
|
|
ip65:
|
|
make -C ip65 all
|
|
|
|
drivers:
|
|
make -C drivers all
|
|
|
|
examples:
|
|
make -C examples all
|
|
|
|
a2:
|
|
make -C a2 all
|
|
|
|
test:
|
|
make -C test TARGET=$(TARGET) all
|
|
|
|
|
|
kipperterm2:
|
|
make -C kipperterm2 all
|
|
|
|
|
|
carts:
|
|
make -C carts all
|
|
|
|
basic:
|
|
make -C basic all
|
|
|
|
wiznet:
|
|
make -C wiznet all
|
|
|
|
|
|
clean:
|
|
make -C ip65 clean
|
|
|
|
make -C drivers clean
|
|
make -C test clean
|
|
make -C carts clean
|
|
|
|
make -C kipperterm2 clean
|
|
|
|
make -C basic clean
|
|
|
|
|
|
distclean:
|
|
make -C ip65 distclean
|
|
|
|
make -C drivers clean
|
|
make -C test distclean
|
|
|
|
make -C carts distclean
|
|
|
|
make -C kipperterm2 distclean
|
|
|
|
make -C basic distclean
|
|
|
|
rm -f *~
|