|
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: M T
Length: 827 (0x33b) Types: TextFile Names: »Makefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« └─⟦ca79c7339⟧ └─⟦this⟧ »DVIware/laser-setters/mctex/psfonts/Makefile«
# # Copyright (c) 1987, 1989 University of Maryland # Department of Computer Science. All rights reserved. # Permission to copy for any purpose is hereby granted # so long as this copyright notice remains intact. # # Makefile for MC-TeX psfonts directory # DESTDIR= SHELL= /bin/sh MAKE= make MFLAGS= # these are intended to be overridden by the definitions in ../Makefile # but just in case, they are here too LIBDIR= ${DESTDIR}/usr/local/lib/tex LATEXDIR=${LIBDIR}/latex TEXTFM= ${LIBDIR}/fonts INSTALL=install SUBDIR= sty tfm OPTS= MFLAGS="${MFLAGS}" DESTDIR=${DESTDIR} \ LIBDIR=${LIBDIR} LATEXDIR=${LATEXDIR} TEXTFM=${TEXTFM} \ INSTALL="${INSTALL}" ${MFLAGS} all: for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${OPTS}); done install clean cleandir depend lint: for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${OPTS} $@); done