|
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: 1520 (0x5f0) Types: TextFile Names: »Makefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« └─⟦ca79c7339⟧ └─⟦this⟧ »DVIware/laser-setters/mctex/postscript/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. # # $Header: /usr/src/local/tex/local/mctex/postscript/RCS/Makefile,v 3.7 89/12/01 01:01:29 chris Exp $ # # Makefile for dvi-to-postscript conversion program DESTDIR= SHELL= /bin/sh CFLAGS= -O -I../h -DPS_DIR=\"${LIBDIR}/ps\" LINTFL= -hbux -I../h -L ../lib/llib-lib MAKE= make LIBS= ../lib/lib.a # these are intended to be overridden by the definitions in ../Makefile # but just in case, they are here too BINDIR= ${DESTDIR}/usr/local/bin LIBDIR= ${DESTDIR}/usr/local/lib/tex MANDIR= ${DESTDIR}/usr/local/man INSTALL=install SRCS= postscript.c psspecial.c OBJS= postscript.o psspecial.o .SUFFIXES: .prc .pro all: postscript pstex.pro pstexpsf.pro .prc.pro: sh strip.sh $< > $@ install: ${INSTALL} -s -o bin -g bin postscript ${BINDIR} ${INSTALL} -c -o bin -g bin pstex.sh ${BINDIR}/pstex -[ -d ${LIBDIR}/ps ] || mkdir ${LIBDIR}/ps ${INSTALL} -o bin -g bin -m 444 pstex.pro ${LIBDIR}/ps ${INSTALL} -o bin -g bin -m 444 pstexpsf.pro ${LIBDIR}/ps ${INSTALL} -c -o bin -g bin -m 444 TeXPSfonts.map ${LIBDIR}/ps ${INSTALL} -c -o bin -g bin -m 444 pstex.1 ${MANDIR}/man1 clean: rm -f core *.o postscript pstex.pro cleandir: clean rm -f .depend depend: ${SRCS} mkdep ${CFLAGS} ${SRCS} lint: ${SRCS} lint ${LINTFL} ${SRCS} postscript: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}