# makefile

CC = gcc
CFLAGS = -O2 -finline-functions

.SUFFIXES: .lam

.lam:
	lambda $<
	$(CC) $(CFLAGS) -s -o $@ $*.c
	rm -f $*.c
