18 lines
231 B
Makefile
18 lines
231 B
Makefile
.PHONY: all check default
|
|
CFLAGS=-std=c99 -O3 -finline-functions
|
|
#CFLAGS=-g
|
|
|
|
default: all
|
|
|
|
all: mes
|
|
|
|
check: all
|
|
./mes.test
|
|
./mes.test ./mes
|
|
# ./mes < boot.mes
|
|
# ./mes < scm.mes
|
|
# ./mes.scm < scm.mes
|
|
|
|
boot: all
|
|
./mes < boot.mes
|