#  makefile for getf and bldfuncs, compiled with the DeSmet C compiler
#
#  prf is just a miniature version of printf without floating point formats
#  match is a Unix style pattern matcher
getf.exe: getf.o 
	bind exec getf prf match -ogetf
getf.o: getf.c

#  quotearg does DOS style wildcard expansion on the command line
bldfuncs.exe: bldfuncs.o quotearg.o prf.o
	bind bldfuncs prf quotearg
bldfuncs.o: bldfuncs.c

quotearg.o: quotearg.c

.c.o:
	c88 $*
.o.exe:
	bind $*
