CFLAGS = -O

all : cobol cbrun

cobol : cobol.c
	cc $(CFLAGS) -s -o cobol cobol.c

cbrun  : cbrun.c
	cc $(CFLAGS) -s -o cbrun cbrun.c
