mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-05 16:03:19 +00:00
18 lines
204 B
Makefile
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
|
|
|