mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
18 lines
290 B
Makefile
18 lines
290 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: all regression
|
|
|
|
all:
|
|
pushd src && make && popd
|
|
pushd runtime && make && popd
|
|
|
|
install: ;
|
|
|
|
regression:
|
|
pushd regression && ./test.sh && popd
|
|
|
|
clean:
|
|
pushd src && make clean && popd
|
|
pushd runtime && make clean && popd
|
|
pushd regression && make clean && popd
|
|
|