2016-05-15 22:07:44 +00:00
|
|
|
.PHONY: all check default
|
|
|
|
CFLAGS=-std=c99 -O3 -finline-functions
|
|
|
|
#CFLAGS=-g
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
|
|
|
all: mes
|
|
|
|
|
|
|
|
check: all
|
|
|
|
./mes.test
|
|
|
|
./mes.test ./mes
|
2016-05-29 11:44:03 +00:00
|
|
|
./mes < boot.mes
|
|
|
|
# ./mes < scm.mes
|
|
|
|
# ./mes.scm < scm.mes
|
|
|
|
|
|
|
|
boot: all
|
|
|
|
./mes < boot.mes
|