|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 1085 (0x43d) Types: TextFile Names: »makefile.msc«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/TeXcontrib/kamal/makefile.msc« └─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/TeXcontrib/kamal/makefile.msc« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/TeXcontrib/kamal/makefile.msc«
#----------------------------------------------------------------------- # Makefile for textools # Make targets: # (none) same as all # all produces all executables # lint run lint on sources # clean remove object files # share make ../textools.sh for mailing # CFLAGS = -O LINTFLAGS = -abchnpux CSUBS = Expand.c Match.c subs.c OSUBS = Expand.o Match.o subs.o B = default: all all: texexpand detex texeqn texmatch texexpand: texexpand1.o $(OSUBS) cc $(CFLAGS) -o $(B)texexpand texexpand1.o $(OSUBS) detex: detex1.o DeTeX.o $(OSUBS) cc $(CFLAGS) -o $(B)detex detex1.o DeTeX.o $(OSUBS) texeqn: texeqn1.o Eqn.o $(OSUBS) cc $(CFLAGS) -o $(B)texeqn texeqn1.o Eqn.o $(OSUBS) texmatch: texmatch1.o $(OSUBS) cc $(CFLAGS) -o $(B)texmatch texmatch1.o $(OSUBS) share: make clean makescript ../textools.sh * lint: lint $(LINTFLAGS) texexpand1.c $(CSUBS) > texexpand.lnt lint $(LINTFLAGS) detex1.c DeTeX.c $(CSUBS) > detex.lnt lint $(LINTFLAGS) texeqn1.c Eqn.c $(CSUBS) > texeqn.lnt lint $(LINTFLAGS) texmatch1.c $(CSUBS) > texmatch.lnt clean: \rm -f *.o core *junk* lint.lst