|
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: P T
Length: 2093 (0x82d) Types: TextFile Names: »P-Make.SYS_V«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/Unsupported/MFpxl/mflib/P-Make.SYS_V« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦beba6c409⟧ »unix3.0/Unsupported.tar.Z« └─⟦25c524ae4⟧ └─⟦this⟧ »Unsupported/MFpxl/mflib/P-Make.SYS_V«
# $Header: Makefile.SUN_V2,v 1.0 86/01/31 17:27:27 richards Released $ # # Makefile for Unix MetaFont support library # SUN V2.x (4.2 BSD) Version # MACHINE = U3B VERSION = DIST # These variables are re-defined by the configuration of Metafont # and will be changed if MF is reconfigured BINDIR = /usr/local MFINPUTS = .:MFsrc:/usr/local/lib/mf/bases MFBASES = .:/usr/local/lib/mf/bases MFPOOL = .:/usr/local/lib/mf TEXFONTS = .:/usr/local/lib/tex/fonts/tfm # # TEXSRCDIR should be relative to the mf84 root directory; redefined by # makefile above during automagic make TEXSRCDIR = ../tex82 TEXHOME = ../${TEXSRCDIR} LIB = mflib.a LIBPROF = mflib_p.a WINDEFS = OPTIM = -O CF = CFLAGS = ${CF} ${WINDEFS} -D${MACHINE} -I${TEXHOME} ${OPTIM} COFLAGS = -r${VERSION} OBJS = calledit.o dateandtime.o paths.o \ closex.o \ mf_arith.o \ b_openclose.o b_input.o b_output.o \ mf_windows.o mf_hp2627.o flush.o OBJSPROF = calledit_p.o dateandtime_p.o paths_p.o \ closex_p.o \ mf_arith_p.o \ b_openclose_p.o b_input_p.o b_output_p.o \ mf_windows_p.o mf_hp2627_p.o flush_p.o ${LIB}: ${OBJS} ar r ${LIB} $? ${LIBPROF}: ${OBJSPROF} ar r ${LIBPROF} $? .SUFFIXES: _p.o .o mfpaths.h: dist_mfpaths.h always @sed -e "s|%MFINPUTS%|${MFINPUTS}|" \ -e "s|%MFBASES%|${MFBASES}|" \ -e "s|%MFPOOL%|${MFPOOL}|" \ -e "s|%TEXFONTS%|${TEXFONTS}|" \ dist_mfpaths.h > tmp_mfpaths.h @sh -c 'if cmp -s tmp_mfpaths.h mfpaths.h; then exit 0; else \ mv tmp_mfpaths.h mfpaths.h; fi' @rm -f tmp_mfpaths.h always: .c_p.o: ${CC} -pg -c ${CFLAGS} $< ; mv $*.o $*_p.o clean: rm -rf *.o *.a mfpaths.h tmp_mfpaths.h # DO NOT DELETE THIS LINE - make maketd DEPENDS ON IT # Dependencies generated at: Tue Jan 21 19:44:50 CST 1986 b_input.o: mftypes.h b_openclose.o: mftypes.h b_output.o: mftypes.h calledit.o: ${TEXHOME}/h00vars.h mftypes.h closex.o: ${TEXHOME}/h00vars.h mftypes.h dateandtime.o: mftypes.h mfwin_hp2627.o: mfwin_sunwin.o: mfwin_windows.o: mftypes.h paths.o: ${TEXHOME}/h00vars.h mfpaths.h mftypes.h # DO NOT ADD ANYTHING HERE - WILL GO AWAY