lama_byterun/Makefile

16 lines
222 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
pushd regression && make clean && popd