home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / tex / texsrc1 / Src / lib / Makefile < prev    next >
Encoding:
Makefile  |  1993-05-21  |  2.5 KB  |  132 lines

  1. # Makefile for the library functions
  2. CC=cc
  3. CFLAGS=-throwback -IC: -f -W #-DRISCOS_DEBUG
  4.  
  5. all: o.alloca o.concat o.concat3 o.dir-p o.eofeoln o.extend-fna o.file-p \
  6.      o.find-suffi o.fontmap o.fprintreal o.getopt o.getopt1 o.inputint \
  7.      o.line o.main o.ourpaths o.pathsrch o.remove-suf o.riscos_ex \
  8.      o.strpascal o.uexit o.version o.xcalloc o.xfopen o.xfopen-pas \
  9.      o.xmalloc o.xrealloc o.xstrdup o.zround 
  10.   libfile -c -o o.library -v files
  11.  
  12. o.alloca: c.alloca
  13.   $(CC) -c $(CFLAGS) alloca
  14.  
  15. o.concat: c.concat
  16.   $(CC) -c $(CFLAGS) concat
  17.  
  18. o.concat3: c.concat3
  19.   $(CC) -c $(CFLAGS) concat3
  20.  
  21. o.dir-p: c.dir-p
  22.   $(CC) -c $(CFLAGS) dir-p
  23.  
  24. o.eofeoln: c.eofeoln
  25.   $(CC) -c $(CFLAGS) eofeoln
  26.  
  27. o.extend-fna: c.extend-fna
  28.   $(CC) -c $(CFLAGS) extend-fna
  29.  
  30. o.file-p: c.file-p
  31.   $(CC) -c $(CFLAGS) file-p
  32.  
  33. o.find-suffi: c.find-suffi
  34.   $(CC) -c $(CFLAGS) find-suffi
  35.  
  36. o.fontmap: c.fontmap
  37.   $(CC) -c $(CFLAGS) fontmap
  38.  
  39. o.fprintreal: c.fprintreal
  40.   $(CC) -c $(CFLAGS) fprintreal
  41.  
  42. o.getopt: c.getopt
  43.   $(CC) -c $(CFLAGS) getopt
  44.  
  45. o.getopt1: c.getopt1
  46.   $(CC) -c $(CFLAGS) getopt1
  47.  
  48. o.inputint: c.inputint
  49.   $(CC) -c $(CFLAGS) inputint
  50.  
  51. o.line: c.line
  52.   $(CC) -c $(CFLAGS) line
  53.  
  54. o.main: c.main
  55.   $(CC) -c $(CFLAGS) main
  56.  
  57. o.ourpaths: c.ourpaths
  58.   $(CC) -c $(CFLAGS) ourpaths
  59.  
  60. o.pathsrch: c.pathsrch
  61.   $(CC) -c $(CFLAGS) pathsrch
  62.  
  63. o.remove-suf: c.remove-suf
  64.   $(CC) -c $(CFLAGS) remove-suf
  65.  
  66. o.riscos_ex: c.riscos_ex
  67.   $(CC) -c $(CFLAGS) riscos_ex
  68.  
  69. o.strpascal: c.strpascal
  70.   $(CC) -c $(CFLAGS) strpascal
  71.  
  72. o.uexit: c.uexit
  73.   $(CC) -c $(CFLAGS) uexit
  74.  
  75. o.version: c.version
  76.   $(CC) -c $(CFLAGS) version
  77.  
  78. o.xcalloc: c.xcalloc
  79.   $(CC) -c $(CFLAGS) xcalloc
  80.  
  81. o.xfopen: c.xfopen
  82.   $(CC) -c $(CFLAGS) xfopen
  83.  
  84. o.xfopen-pas: c.xfopen-pas
  85.   $(CC) -c $(CFLAGS) xfopen-pas
  86.  
  87. o.xmalloc: c.xmalloc
  88.   $(CC) -c $(CFLAGS) xmalloc
  89.  
  90. o.xrealloc: c.xrealloc
  91.   $(CC) -c $(CFLAGS) xrealloc
  92.  
  93. o.xstrdup: c.xstrdup
  94.   $(CC) -c $(CFLAGS) xstrdup
  95.  
  96. o.zround: c.zround
  97.   $(CC) -c $(CFLAGS) zround
  98.  
  99. clean: 
  100.   remove o.alloca
  101.   remove o.concat
  102.   remove o.concat3
  103.   remove o.dir-p
  104.   remove o.eofeoln
  105.   remove o.extend-fna
  106.   remove o.file-p
  107.   remove o.find-suffi
  108.   remove o.fontmap
  109.   remove o.fprintreal
  110.   remove o.getopt
  111.   remove o.getopt1
  112.   remove o.inputint
  113.   remove o.line
  114.   remove o.main
  115.   remove o.ourpaths
  116.   remove o.pathsrch
  117.   remove o.remove-suf
  118.   remove o.riscos_ex
  119.   remove o.strpascal
  120.   remove o.uexit
  121.   remove o.version
  122.   remove o.xcalloc
  123.   remove o.xfopen
  124.   remove o.xfopen-pas
  125.   remove o.xmalloc
  126.   remove o.xrealloc
  127.   remove o.xstrdup
  128.   remove o.zround
  129.   
  130. veryclean: clean
  131.   remove o.library
  132.