lama_byterun/Makefile

24 lines
472 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
pushd stdlib && make && popd
2018-02-13 02:03:27 +03:00
2020-01-14 19:14:12 +03:00
#install: ;
2018-02-19 17:19:00 +03:00
regression:
pushd regression && make clean check && popd
pushd regression/x86only && make clean check && popd
pushd stdlib/regression && make clean check && popd
2018-02-19 17:19:00 +03:00
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 stdlib && make clean && popd
pushd regression && make clean && popd
2018-02-13 02:03:27 +03:00