home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume4 / fxref / Makefile < prev    next >
Encoding:
Makefile  |  1989-02-03  |  467 b   |  28 lines

  1. # makefile for fxref, the f77 xref program from Bourne 8.2.2
  2.  
  3. CFLAGS = -O
  4.  
  5. all:
  6.     make fxrefa fxrefb flink
  7.  
  8. flink: flink.c error.o yywrap.o
  9.     cc -O -o flink flink.c error.o yywrap.o
  10.  
  11. fxrefa: fxrefa.c yywrap.o
  12.     cc -O -o fxrefa fxrefa.c yywrap.o
  13.  
  14. fxrefb: fxrefb.c
  15.     cc -O -o fxrefb fxrefb.c
  16.  
  17. flink.c: flink.l
  18.     lex flink.l
  19.     mv lex.yy.c flink.c
  20.  
  21. fxrefa.c: fxrefa.l
  22.     lex fxrefa.l
  23.     mv lex.yy.c fxrefa.c
  24.  
  25. clean:
  26.     rm -f flink.c fxrefa.c lex.yy.c Make.rec
  27.     cd SCCS; sccsclean ..
  28.