lama_byterun/Makefile
2018-02-19 17:19:00 +03:00

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