home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / utility / disk / undelete / makefile < prev    next >
Makefile  |  1993-02-11  |  432b  |  25 lines

  1. #################################################################
  2. #
  3. # Makefile for undel utility.
  4. #
  5. # Normal setup when using GNU C
  6. #
  7.  
  8. CC      = d:\bin\gcc -mshort -Wall
  9.  
  10. PROG    =  undel.prg
  11.  
  12. HDRS    =  undel.h
  13.  
  14. OBJS    =  undel.o fsel.o
  15.  
  16. OPTS    =
  17.  
  18. $(PROG): $(OBJS)
  19.     $(CC) $(OPTS) -o $(PROG) $(OBJS) -lgem16
  20.     ls -l *.prg
  21.  
  22. $(OBJS):  $(HDRS)
  23.  
  24. ######################### end of makefile ######################
  25.