mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
15 lines
210 B
Makefile
15 lines
210 B
Makefile
.PHONY: all
|
|
|
|
all:
|
|
@echo "build Lama in Lama"
|
|
@make -C src
|
|
@make -C runtime
|
|
@echo "regression Lama in Lama"
|
|
@make -C regression
|
|
|
|
clean:
|
|
make clean -C src
|
|
make clean -C runtime
|
|
make clean -C regression
|
|
|
|
|