mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-03 06:57:27 +00:00
14 lines
153 B
Makefile
14 lines
153 B
Makefile
|
|
all:
|
|
@(cd src; make all)
|
|
|
|
test: all
|
|
@(cd tests; make all)
|
|
|
|
clean:
|
|
@echo "Cleaning..."
|
|
@(cd src; make clean)
|
|
@(cd tests; make clean)
|
|
@rm -rf bin
|
|
|