lama_byterun/Makefile
2018-03-04 23:13:08 +03:00

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