mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 10:19:18 +02:00
14 lines
152 B
Makefile
14 lines
152 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
|
|
|