mes/GNUmakefile

18 lines
231 B
Makefile
Raw Normal View History

.PHONY: all check default
CFLAGS=-std=c99 -O3 -finline-functions
#CFLAGS=-g
default: all
all: mes
check: all
./mes.test
./mes.test ./mes
2016-07-08 17:02:06 +01:00
# ./mes < boot.mes
2016-05-29 12:44:03 +01:00
# ./mes < scm.mes
# ./mes.scm < scm.mes
boot: all
./mes < boot.mes