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

⟦dd9fe482a⟧ TextFile

    Length: 1277 (0x4fd)
    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/dvi/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/dvi/RCS/Makefile,v 3.2 89/10/18 07:08:38 chris Exp $
#
# Makefile for ctex/dvi (DVI-to-DVI conversion programs)
#
DESTDIR=
SHELL=	/bin/sh
CFLAGS=	-O -I../h
LINTFL=	-hbux -I../h -L ../lib/llib-lib
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

SRCS=	dviconcat.c dviselect.c
PROGS=	dviconcat dviselect

all: ${PROGS}

install:
	for i in ${PROGS}; do \
	    ${INSTALL} -s -o bin -g bin $$i ${BINDIR}/$$i; done
	${INSTALL} -c -o bin -g bin -m 444 dviconcat.1 ${MANDIR}/man1
	${INSTALL} -c -o bin -g bin -m 444 dviselect.1 ${MANDIR}/man1

clean:
	rm -f core *.o *.bak ${PROGS}

cleandir: clean
	rm -f .depend

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

lint: ${SRCS}
	lint ${LINTFL} dviconcat.c
	lint ${LINTFL} dviselect.c

dviconcat: dviconcat.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS}

dviselect: dviselect.o ${LIBS}
	${CC} ${CFLAGS} -o $@ $@.o ${LIBS}