#################################################################
#
# Makefile for undel utility.
#
# Normal setup when using GNU C
#

CC      = d:\bin\gcc -mshort -Wall

PROG    =  undel.prg

HDRS    =  undel.h

OBJS    =  undel.o fsel.o

OPTS    =

$(PROG): $(OBJS)
	$(CC) $(OPTS) -o $(PROG) $(OBJS) -lgem16
	ls -l *.prg

$(OBJS):  $(HDRS)

######################### end of makefile ######################
