# DMakefile for the parse package
# set up to test it in english

CFLAGS = -DENGLISH

try : ex.o parse.o
   dcc -o try ex.o parse.o $(CFLAGS)

ex.o : ex.c parse.h
   dcc -c -o ex.o ex.c $(CFLAGS)

parse.o : parse.c parse.h
   dcc -c -o parse.o parse.c $(CFLAGS)
