lama_byterun/Makefile

19 lines
290 B
Makefile
Raw Normal View History

2018-02-13 02:03:27 +03:00
SHELL := /bin/bash
2018-02-19 17:19:00 +03:00
.PHONY: all regression
2018-02-13 02:03:27 +03:00
all:
pushd src && make && popd
2018-03-04 23:13:08 +03:00
pushd runtime && make && popd
2018-02-13 02:03:27 +03:00
2018-02-19 17:19:00 +03:00
install: ;
regression:
pushd regression && ./test.sh && popd
2018-02-13 02:03:27 +03:00
clean:
pushd src && make clean && popd
2018-03-04 23:13:08 +03:00
pushd runtime && make clean && popd
pushd regression && make clean && popd
2018-02-13 02:03:27 +03:00