home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / SSPELL11.ZIP / MAKEFILE.UNX < prev    next >
Encoding:
Text File  |  1992-01-26  |  555 b   |  30 lines

  1. all: sspell
  2.  
  3. # flags = -gx
  4.  
  5. cc = cc
  6.  
  7. .c.o:
  8.     $(cc) $(flags) -c $<
  9.  
  10. cache.o: cache.c cache.h strfn.h
  11.  
  12. sspell.o: sspell.c cache.h file.h config.h
  13.  
  14. file.o: file.h file.c config.h
  15.  
  16. check.o: check.h check.c config.h
  17.  
  18. root.o: root.c root.h
  19.  
  20. string.o: string.c string.h
  21.  
  22. utility.o: utility.c utility.h
  23.  
  24. sspell: cache.o file.o sspell.o check.o root.o string.o utility.o
  25.     $(cc) -o sspell $(flags) sspell.o cache.o file.o check.o root.o string.o utility.o
  26.  
  27. clean:
  28.     rm cache.o file.o sspell.o check.o root.o string.o utility.o
  29.     rm sspell
  30.