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.dl < prev    next >
Makefile  |  1999-01-25  |  3KB  |  73 lines

  1. # Don't edit makefile, edit makefile.bas instead.
  2. #
  3.  
  4. RM=  rm -f
  5.  
  6. ALL=    os-a32.c os-a41.c os-aix.c os-asv.c \
  7.     os-aux.c os-bs2.c os-bsd.c os-bsf.c os-bsi.c os-bso.c \
  8.     os-cvx.c os-dos.c os-dpx.c os-dyn.c \
  9.     os-gen.c os-hpp.c os-isc.c os-lnx.c \
  10.     os-lyn.c os-mnt.c os-neb.c os-nxt.c \
  11.     os-os2.c os-osf.c os-pt1.c os-ptx.c \
  12.     os-s40.c os-sco.c os-sgi.c os-sun.c \
  13.     os-sv4.c os-ult.c os-win.c os-wnt.c \
  14.     os-3b1.c os-att.c os-sc5.c
  15.  
  16. .SUFFIXES: .ic
  17.  
  18. .ic.c:
  19.         ./includer < $*.ic > $*.c
  20.  
  21. all:        includer $(ALL)
  22.  
  23. includer:    includer.c
  24.         $(CC) -o includer includer.c -ldl
  25.  
  26. clean:
  27.         $(RM) $(ALL) includer
  28.  
  29. # You don't have to run this unless you change a .ic file.
  30. depend:
  31.         ./makedep
  32.  
  33. # Makedep only catches 1-level deep includes.  If something depends on a
  34. # 2nd-level include, put it here.
  35.  
  36. os-3b1.c: header raw.io read.sel spell.unx term.cap unix os-3b1.ic
  37. os-a32.c: header raw.ios read.sel spell.unx term.cap unix os-a32.ic
  38. os-a41.c: header raw.ios read.sel spell.unx term.inf unix os-a41.ic
  39. os-aix.c: header raw.brk read.sel spell.unx term.cap unix os-aix.ic
  40. os-asv.c: fsync.non header raw.io read.sel spell.unx term.inf truncate unix os-asv.ic
  41. os-att.c: header raw.io read.sel spell.unx term.cap unix os-att.ic
  42. os-aux.c: header raw.io read.sel spell.unx term.cap unix os-aux.ic
  43. os-bs2.c: header raw.ios read.sel spell.unx term.cap unix os-bs2.ic
  44. os-bsd.c: getcwd header raw.brk read.sel spell.unx term.cap unix os-bsd.ic
  45. os-bsf.c: header raw.ios read.sel spell.unx term.cap unix os-bsf.ic
  46. os-bsi.c: header raw.brk read.sel spell.unx term.cap unix os-bsi.ic
  47. os-bso.c: header raw.ios read.sel spell.unx term.cap unix os-bso.ic
  48. os-cvx.c: header raw.ios read.sel spell.unx term.cap unix os-cvx.ic
  49. os-dos.c: dos dosgen header term.dos os-dos.ic
  50. os-dpx.c: header raw.ios read.sel spell.unx term.cap unix os-dpx.ic
  51. os-dyn.c: getcwd header raw.brk read.sel spell.unx term.cap unix os-dyn.ic
  52. os-gen.c: header raw.ios read.sel spell.unx term.cap unix os-gen.ic
  53. os-hpp.c: header raw.io read.sel spell.unx term.cap unix os-hpp.ic
  54. os-isc.c: header raw.io read.sel spell.unx term.cap truncate unix os-isc.ic
  55. os-lnx.c: header raw.io read.sel spell.unx term.cap unix os-lnx.ic
  56. os-lyn.c: getcwd header raw.ios read.sel spell.unx term.cap unix os-lyn.ic
  57. os-mnt.c: header raw.io read.sel spell.unx term.cap unix os-mnt.ic
  58. os-neb.c: header raw.ios read.sel spell.unx term.cap unix os-neb.ic
  59. os-nxt.c: getcwd header raw.brk read.sel spell.unx term.cap unix os-nxt.ic
  60. os-os2.c: header os2 spell.os2 term.dos os-os2.ic
  61. os-osf.c: header raw.ios read.sel spell.unx term.cap unix os-osf.ic
  62. os-pt1.c: header raw.io read.pol spell.unx term.inf unix os-pt1.ic
  63. os-ptx.c: header raw.io read.pol spell.unx term.inf unix os-ptx.ic
  64. os-s40.c: header raw.brk read.sel spell.unx term.cap unix os-s40.ic
  65. os-sc5.c: header raw.ios read.sel spell.unx term.inf unix os-sc5.ic
  66. os-sco.c: header raw.io read.sel spell.unx term.inf truncate unix os-sco.ic
  67. os-sgi.c: header raw.ios read.sel spell.unx term.inf unix os-sgi.ic
  68. os-sun.c: header raw.brk read.sel spell.unx term.cap unix os-sun.ic
  69. os-sv4.c: header raw.ios read.pol spell.unx term.inf unix os-sv4.ic
  70. os-ult.c: header raw.brk read.sel spell.unx term.cap unix os-ult.ic
  71. os-win.c: dosgen header spell.ms win os-win.ic
  72. os-wnt.c: dosgen header spell.ms win os-wnt.ic
  73.