mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
15 lines
228 B
Makefile
15 lines
228 B
Makefile
# Dummy makefile for people who don't read "readme" files, or for automated
|
|
# installations
|
|
|
|
.PHONY : all
|
|
all:
|
|
python koch.py boot -d:release
|
|
|
|
.PHONY : install
|
|
install:
|
|
sh build.sh
|
|
|
|
.PHONY : clean
|
|
clean:
|
|
python koch.py clean
|