iodine/Makefile
2006-12-16 00:10:03 +00:00

18 lines
204 B
Makefile

all:
@(cd src; make all)
@(cd tests; make all)
test: all
(cd tests; make all)
stateos:
@echo OS is $(OS)
clean:
@echo "Cleaning..."
@(cd src; make clean)
@(cd tests; make clean)
@rm -rf bin