home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-30 | 704 b | 21 lines |
- # Use this makefile if you have access to getpar(). You then
- # need to link with the library that provides it (e.g. -lsep below).
- # If you don't use the other makefile (./makefiile).
-
- clean:
- rm -f *.o core *junk*
-
- all: texexpand detex texeqn texmatch
-
- texexpand: texexpand2.o TeXExpand.o TeXMatch.o subs.o
- cc -o texexpand texexpand2.o TeXExpand.o TeXMatch.o subs.o -lsep
-
- detex: detex2.o TeXExpand.o TeXMatch.o subs.o
- cc -o detex detex2.o TeXExpand.o TeXMatch.o subs.o -lsep
-
- texeqn: texeqn2.o TeXExpand.o TeXMatch.o subs.o
- cc -o texeqn texeqn2.o TeXExpand.o TeXMatch.o subs.o -lsep
-
- texmatch: texmatch2.o TeXMatch.o TeXExpand.o subs.o
- cc -o texmatch texmatch2.o TeXMatch.o TeXExpand.o subs.o -lsep
-