mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
21 lines
249 B
Makefile
21 lines
249 B
Makefile
all:
|
|
cd src && make all
|
|
|
|
liblake:
|
|
cd src && make liblake
|
|
|
|
repl:
|
|
cd src && make repl
|
|
|
|
clean:
|
|
cd src && make clean
|
|
-rm -f lake
|
|
|
|
test:
|
|
cd src && make liblake
|
|
cd test && make
|
|
|
|
test_clean:
|
|
cd test && make clean
|
|
|
|
.PHONY: all clean test test_clean
|