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

⟦5ef5c57c3⟧ TextFile

    Length: 784 (0x310)
    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/fig2dev/Makefile« 

TextFile

#	Fig2dev : General Fig code translation program
#
#	Micah Beck
#	Modified from f2ps
#

#
# to include drivers for the following langauges, 
# add the corresponding symbol to the DRIVERS list
#
# DRIVERS = -DEPIC -DLATEX -DPIC  -DPICTEX -DPS
#
DRIVERS = -DEPIC -DLATEX -DPIC  -DPICTEX -DPS

FIGOBJ = arrow.o bound.o free.o read.o read1_3.o latex_line.o
OBJ = fig2dev.o getopt.o $(FIGOBJ)

LIB = lib$(TARGET_ARCH).a
LIBS = dev/$(LIB)

#CFLAGS =  -g $(DRIVERS)
CFLAGS = -O $(DRIVERS)

TARGET = fig2dev$(TARGET_ARCH)

$(TARGET): $(OBJ) $(LIBS) 
	$(CC) $(TARGET_ARCH) $(OBJ) $(LIBS) -lm -o $(TARGET)

$(LIBS): always
	(cd dev; make)

$(OBJ): fig2dev.h drivers.h


#########
always:

tidy: 
	rm -f *.o
	(cd dev; make tidy)

clean : 
	rm -f *.o fig2dev fig2dev-* core
	(cd dev; make clean)