# gotten from Steve M.
# call is 'make prog' where 'prog' is name of executable
# to be made
include $(MAKEINC)/Makepre.h

.c:
	$(CC) $(CFLAGS) -c $<
	$(LD) $(LDFLAGS) -s $(SHAREDLIB) $(@F).o -o $@ \
	&& rm $@.o
