# The "testing" program is not needed by MandelVroom;  I've left it in
# the Makefile due to Charlie Heath's "no modifications" demand.  If
# you think that policy is as much of a pain in the ass as I do, write
# Charlie at Microsmiths, Inc.


testing:        testing.o safeclose.o getfile.o
        ln testing.o safeclose.o getfile.o -lc32

testing.o: testing.c
  cc testing.c +l -s

safeclose.o: safeclose.c
  cc safeclose.c +l -s

getfile.o: getfile.c
  cc getfile.c +l -s

