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

⟦a4fc92d2d⟧ TextFile

    Length: 2183 (0x887)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/crt-viewers/others/Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/crt-viewers/sunview/dvipage/Makefile« 

TextFile

#
# dvipage: DVI Previewer Program for Suns
#
# Neil Hunt (hunt@spar.slb.com)
#
# This program is based, in part, upon the program dvisun,
# distributed by the UnixTeX group, extensively modified by
# Neil Hunt at the Schlumberger Palo Alto Research Laboratories
# of Schlumberger Technologies, Inc.
#
# From the dvisun manual page entry:
#	Mark Senn wrote the early versions of [dvisun] for the
#	BBN BitGraph. Stephan Bechtolsheim, Bob Brown, Richard
#	Furuta, James Schaad and Robert Wells improved it. Norm
#	Hutchinson ported the program to the Sun. Further bug fixes
#	by Rafael Bracho at Schlumberger.
#
# Copyright (c) 1988 Schlumberger Technologies, Inc 1988.
# Anyone can use this software in any manner they choose,
# including modification and redistribution, provided they make
# no charge for it, and these conditions remain unchanged.
#
# This program is distributed as is, with all faults (if any), and
# without any warranty. No author or distributor accepts responsibility
# to anyone for the consequences of using it, or for whether it serves any
# particular purpose at all, or any other reason.
#
# HISTORY
#
# $Log:	Makefile,v $
# Revision 1.3  88/12/15  18:20:02  hunt
# Version 3.0. Split into more files, fixed for Sun4, reads GF fonts.
# 
# Revision 1.2  88/11/26  11:12:51  hunt
# Added alternate font file location for sun4 machines at Spar.
# 
# Revision 1.1  88/08/30  09:05:42  hunt
# Initial revision
# 
# 12 April 1988 - Neil Hunt
#	Version 2.0 released for use.
#
# Earlier history unavailable.
#

# For sun3.
#C = -O

# For sun3, f68881
C = -O -f68881

# For Sun4.
#C = -O2

# Sun libraries.
L = -lsuntool -lsunwindow -lpixrect -lm

dvipage: dvipage.o sample.o fonts.o findfile.o message.o utils.o args.o
	cc $C -o dvipage \
	 dvipage.o sample.o fonts.o findfile.o message.o utils.o args.o $L

dvipage.o: dvipage.c dvi.h dvipage.h
	cc $C -c dvipage.c

sample.o: sample.c dvipage.h
	cc $C -c sample.c

fonts.o: fonts.c dvipage.h dvi.h
	cc $C -c fonts.c

findfile.o: findfile.c dvipage.h
	cc $C -c findfile.c

message.o: message.c dvipage.h
	cc $C -c message.c

utils.o: utils.c dvipage.h
	cc $C -c utils.c

args.o: args.c dvipage.h
	cc $C -c args.c