|
|
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: 1579 (0x62b)
Types: TextFile
Names: »Makefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
└─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z«
└─⟦ca79c7339⟧
└─⟦this⟧ »DVIware/laser-setters/mctex/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
#
DESTDIR=
SHELL= /bin/sh
MAKE= make
MFLAGS=
# where things get installed
BINDIR= ${DESTDIR}/usr/local/bin
LIBDIR= ${DESTDIR}/usr/local/lib/tex
# TeX and LaTeX input directories.
# Both might be `${LIBDIR}/inputs', or not.
TEXDIR= ${LIBDIR}/macros
LATEXDIR=${LIBDIR}/latex
# TeX TFM file directory (for psfonts/tfm/Makefile)
TEXTFM= ${LIBDIR}/fonts
# where manuals get installed---note that `/man1' is tacked on
# for section 1 manuals, etc
MANDIR= ${DESTDIR}/usr/local/man
# where to find the font description file
FONTDESC=${LIBDIR}/fontdesc
# how to install binaries
# on 4BSD, you can use `install'; if not, see misc/bsdinstall.sh
INSTALL=install
# The DVI drivers.
# Delete any that you do not want installed.
# The full list is:
# imagen postscript texsun texx versatec
DRIVERS=imagen postscript versatec
# The subdirectories. N.B.: "lib" must appear first! (aside from doc)
# `psfonts' may be added here.
SUBDIR= doc lib dvi ${DRIVERS} psfig
OPTS= MFLAGS="${MFLAGS}" DESTDIR=${DESTDIR} \
BINDIR=${BINDIR} LIBDIR=${LIBDIR} MANDIR=${MANDIR} \
TEXDIR=${TEXDIR} LATEXDIR=${LATEXDIR} TEXTFM=${TEXTFM} \
INSTALL="${INSTALL}" FONTDESC=${FONTDESC} \
CC=${CC} ${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