mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
15 lines
182 B
Makefile
15 lines
182 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: all regression
|
|
|
|
all:
|
|
pushd src && make && popd
|
|
|
|
install: ;
|
|
|
|
regression:
|
|
pushd regression && ./test.sh && popd
|
|
|
|
clean:
|
|
pushd src && make clean && popd
|
|
|