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: I T

⟦9cb045f98⟧ TextFile

    Length: 1356 (0x54c)
    Types: TextFile
    Names: »IMakefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/dvi-to-ps/TeXPS/psfig/IMakefile« 

TextFile

# The file example.xwd contains the dump of an X11.3 screen dump.
# This file is a non-text (binary) file and in order to handle
# this file using RCS and patch, it is only distributed in
# textual form, and as such is called example.xwd-text.
# By the way example.xwd-text was built using the following
# command:
#	uuencode example.xwd example.xwd > example.xwd-text

XPR_SRC = /usr/src/local/bin/X/Release3/core.src/clients/xpr

all depend lint print relink:
	cd ps-ex; make $@

install:
	$(CP) psfig.tex $(TEX_MACROS_DIR)
	cd ps-ex; make $@

#if (COND_XWINDOWS == 0)
xwindows.tex:	Makefile
	$(RM) $@
	echo '\def\XWindowsAvailable{0}'	> $@
#else
xwindows.tex:	Makefile
	$(RM) $@
	echo '\def\XWindowsAvailable{1}'	> $@
	make example.xpr

example.xpr:	example.xwd Makefile
	@$(RM)   $@
	$(XPR_PATCHED) -portrait -device psfig example.xwd > $@
example.xwd:	example.xwd-text
	@$(RM) $@
	uudecode example.xwd-text
# Some copying back and forth to get rid of the user id uucp on
# example.xwd
	$(CP) $@ XX.tmp
	$(RM) $@
	$(CP) XX.tmp $@
	$(RM) XX.tmp
#endif

# Check out the original and the new version and compute the patch.
compute-patch:
	co -r1.5 -p $(XPR_SRC)/xpr.c > xpr.c.orig
	co -r1.6 -p $(XPR_SRC)/xpr.c > xpr.c
	-diff -c xpr.c.orig xpr.c > xpr.patch

print:

clean::
	$(RM) example.xpr example.xwd xwindows.tex xpr.c xpr.c.orig
	cd ps-ex; make $@