CC	=	gcc
CFLAGS	=	-Wall
PROGS	=	cgen1

all:	$(PROGS)
clean:
	/bin/rm -f $(PROGS) *.o core

cgen1:	cgen1.o
