1a565a9208
* GNUmakefile: New file. * mes.c: Lots of work. * mes.mes: New file, split-off from mes.scm. (builtin, number): New function. (apply): Use them. * mes.test: New file. * scm.mes: New file, split-off from mes.scm.
14 lines
181 B
Makefile
14 lines
181 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 < scm.mes
|
|
./mes.scm < scm.mes
|