mirror of
https://github.com/yarrick/iodine.git
synced 2024-12-22 21:33:33 +02:00
12 lines
121 B
Makefile
12 lines
121 B
Makefile
|
|
all:
|
|
(cd src; make all)
|
|
|
|
stateos:
|
|
@echo OS is $(OS)
|
|
|
|
clean:
|
|
@echo "Cleaning..."
|
|
(cd src; make clean)
|
|
@rm -rf bin
|
|
|