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

  1. # Use this makefile if you have access to getpar(). You then
  2. # need to link with the library that provides it (e.g. -lsep below).
  3. # If you don't use the other makefile (./makefiile).
  4.  
  5. clean:
  6.     rm -f *.o core *junk*
  7.  
  8. all: texexpand detex texeqn texmatch
  9.  
  10. texexpand: texexpand2.o TeXExpand.o TeXMatch.o subs.o
  11.     cc -o texexpand texexpand2.o TeXExpand.o TeXMatch.o subs.o -lsep
  12.  
  13. detex: detex2.o TeXExpand.o TeXMatch.o subs.o
  14.     cc -o detex detex2.o TeXExpand.o TeXMatch.o subs.o -lsep
  15.  
  16. texeqn: texeqn2.o TeXExpand.o TeXMatch.o subs.o
  17.     cc -o texeqn texeqn2.o TeXExpand.o TeXMatch.o subs.o -lsep
  18.  
  19. texmatch: texmatch2.o TeXMatch.o TeXExpand.o subs.o
  20.     cc -o texmatch texmatch2.o TeXMatch.o TeXExpand.o subs.o -lsep
  21.