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