mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-08 04:06:01 +00:00
b36b448cdb
git-svn-id: http://svn.code.sf.net/p/netboot65/code@190 93682198-c243-4bdb-bd91-e943c89aac3b
39 lines
539 B
Makefile
39 lines
539 B
Makefile
TARGET=c64
|
|
|
|
|
|
.PHONY: ip65 drivers test clean distclean nb65 examples
|
|
|
|
|
|
all: ip65 drivers test nb65 examples
|
|
|
|
ip65:
|
|
make -C ip65 all
|
|
|
|
drivers:
|
|
make -C drivers all
|
|
|
|
examples:
|
|
make -C examples all
|
|
|
|
test:
|
|
make -C test TARGET=$(TARGET) all
|
|
|
|
nb65:
|
|
make -C nb65 all
|
|
|
|
clean:
|
|
make -C ip65 clean
|
|
make -C drivers clean
|
|
make -C test clean
|
|
make -C nb65 clean
|
|
make -C kipper clean
|
|
|
|
|
|
distclean:
|
|
make -C ip65 distclean
|
|
make -C drivers clean
|
|
make -C test distclean
|
|
make -C nb65 distclean
|
|
make -C kipper distclean
|
|
rm -f *~
|