2016-05-15 22:07:44 +00:00
|
|
|
.PHONY: all check default
|
|
|
|
CFLAGS=-std=c99 -O3 -finline-functions
|
|
|
|
#CFLAGS=-g
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
2016-07-09 11:23:58 +00:00
|
|
|
all: mes boot.mes
|
2016-05-15 22:07:44 +00:00
|
|
|
|
|
|
|
check: all
|
|
|
|
./mes.test
|
|
|
|
./mes.test ./mes
|
2016-07-09 11:23:58 +00:00
|
|
|
./mes < test.mes
|
|
|
|
|
|
|
|
boot.mes: mes.mes scm.mes test.mes
|
|
|
|
cat $^ > $@
|
2016-05-29 11:44:03 +00:00
|
|
|
|
|
|
|
boot: all
|
|
|
|
./mes < boot.mes
|
2016-07-09 11:23:58 +00:00
|
|
|
|
|
|
|
run: all
|
|
|
|
./mes < test.mes
|