DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦cd5a7a4aa⟧ TextFile

    Length: 1260 (0x4ec)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/mctex/versatec/Makefile« 

TextFile

#
# 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/versatec/RCS/Makefile,v 3.2 89/10/18 07:10:26 chris Exp $
#
# Makefile for dvi-to-Versatec conversion program

DESTDIR=
SHELL=	/bin/sh
CFLAGS=	-O -I../h
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
MANDIR=	${DESTDIR}/usr/local/man
INSTALL=install -o bin -g bin

SRCS=	verser1.c verser2.c

all: verser1 verser2

install:
	${INSTALL} -s -o bin -g bin verser1 ${BINDIR}/verser1
	${INSTALL} -s -o bin -g bin verser2 ${BINDIR}/verser2
	${INSTALL} -c -o bin -g bin dvipr.sh ${BINDIR}/dvipr
	${INSTALL} -c -o bin -g bin -m 444 dvipr.1 ${MANDIR}/man1/dvipr.1

clean:
	rm -f core *.o verser1 verser2

cleandir: clean
	rm -f .depend

depend: ${SRCS}
	mkdep ${CFLAGS} ${SRCS}

lint: ${SRCS}
	lint ${LINTFL} verser1.c
	lint ${LINTFL} verser2.c

verser1: verser1.o
verser2: verser2.o

verser1 verser2: ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS}