home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume7 / textools / part01 / makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  440 b   |  17 lines

  1. clean:
  2.     rm -f *.o core *junk*
  3.  
  4. all: texexpand detex texeqn texmatch
  5.  
  6. texexpand: texexpand1.o TeXExpand.o TeXMatch.o
  7.     cc -o texexpand texexpand1.o TeXExpand.o TeXMatch.o
  8.  
  9. detex: detex1.o TeXExpand.o TeXMatch.o
  10.     cc -o detex detex1.o TeXExpand.o TeXMatch.o
  11.  
  12. texeqn: texeqn1.o TeXExpand.o TeXMatch.o
  13.     cc -o texeqn texeqn1.o TeXExpand.o TeXMatch.o
  14.  
  15. texmatch: texmatch1.o TeXMatch.o TeXExpand.o
  16.     cc -o texmatch texmatch1.o TeXMatch.o TeXExpand.o
  17.