mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
33 lines
432 B
Makefile
33 lines
432 B
Makefile
TARGET=c64
|
|
|
|
|
|
.PHONY: ip65 drivers test clean distclean nb65
|
|
|
|
|
|
all: ip65 drivers test nb65
|
|
|
|
ip65:
|
|
make -C ip65 all
|
|
|
|
drivers:
|
|
make -C drivers 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
|
|
|
|
distclean:
|
|
make -C ip65 distclean
|
|
make -C drivers clean
|
|
make -C test distclean
|
|
make -C nb65 distclean
|
|
rm -f *~
|