home *** CD-ROM | disk | FTP | other *** search
/ ftp.uv.es / 2014.11.ftp.uv.es.tar / ftp.uv.es / pub / unix / pine4.10.tar.gz / pine4.10.tar / pine4.10 / pico / osdep / makefile.dos < prev    next >
Makefile  |  1997-05-02  |  535b  |  28 lines

  1. # Don't edit makefile, edit makefile.bas instead.
  2. #
  3.  
  4. RM=  del
  5.  
  6. ALL    =    os-dos.c os-win.c os-wnt.c
  7.  
  8. .SUFFIXES: .ic
  9.  
  10. .ic.c:
  11.         .\includer < $*.ic > $*.c
  12.  
  13. all:        includer.exe $(ALL)
  14.  
  15. includer.exe:    includer.c
  16.         $(CC) /F 4000 -o includer.exe includer.c
  17.  
  18. clean:
  19.         $(RM) $(ALL) includer.exe
  20.  
  21. # You don't have to run this unless you change a .ic file.
  22. depend:
  23.         echo Dependencies must be built under Unix
  24.  
  25. os-win.c: os-win.ic header dosgen win spell.ms
  26. os-wnt.c: os-win.ic header dosgen win spell.ms
  27. os-dos.c: os-dos.ic header dosgen dos term.dos
  28.