|
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: 824 (0x338) 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/troff_to_tex/makefile.msc« └─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/TeXcontrib/kamal/troff_to_tex/makefile.msc«
#----------------------------------------------------------------------- # Makefile for troff-to-TeX translator using MS-DOS # Make targets: # (none) same as tr2tex # tr2tex build translator # lint run lint on sources # clean remove object and executable files # share make ../ttr.sh for mailing # # Author: Nelson H.F. Beebe 25-Oct-86 CFLAGS = -O -DMSC CFILES = tr2tex.c tr.c subs.c LINTFLAGS = -abchnpux B = tr2tex: tr2tex.o tr.o subs.o cc $(CFLAGS) tr2tex.o tr.o subs.o -o $(B)tr2tex share: make clean makescript ../ttr.sh * tr2tex.o: tr2tex.c setups.h cc $(CFLAGS) -c tr2tex.c tr.o: tr.c setups.h cc $(CFLAGS) -c tr.c subs.o: subs.c setups.h similar.h greek.h flip.h troff_mac.h mathcom.h cc $(CFLAGS) -c subs.c lint: lint $(LINTFLAGS) $(CFILES) > lint.lst clean: \rm -f *.o core *junk* tr2tex lint.lst