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

⟦bc2180ea8⟧ TextFile

    Length: 837 (0x345)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/TeXgraphics/transfig/Makefile« 

TextFile

#
# Top level Makefile for TransFig
#
# to make fig2dev:         type "make"
#
# to install:              set  BINDIR in Makefile
#			   type "make install"
#
# to make manual:          type "make manual"

# directory in which to install executables
BINDIR = /usr/local/bin
MANDIR = /usr/local/man/man1

all:
	cd transfig; make
	cd fig2dev; make

manual: 
	cd doc/manual; make; latex manual; latex manual

install:	all
	install -c -s transfig/transfig$(TARGET_ARCH) $(BINDIR)/transfig
	install -c -s fig2dev/fig2dev$(TARGET_ARCH) $(BINDIR)/fig2dev
	install -c fig2dev/fig2ps2tex $(BINDIR)
	install -c fig2dev/pic2tpic $(BINDIR)
#	install -c doc/transfig.1 doc/fig2dev.1 $(MANDIR)
	install -c doc/transfig.1 $(MANDIR)
	install -c doc/fig2dev.1 $(MANDIR)

clean:
	cd transfig; make clean
	cd fig2dev; make clean
	cd doc/manual; make clean