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

⟦5a97e0607⟧ TextFile

    Length: 900 (0x384)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXgraphics/transfig/fig2dev/Makefile« 

TextFile

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

#
# to include drivers for the following languages, 
# add the corresponding symbol to the DRIVERS list
#
# DRIVERS = -DEPIC -DLATEX -DPIC -DPICTEX -DPS -DPSTEX -DTEXTYL -DTPIC
#
DRIVERS = -DEPIC -DLATEX -DPIC -DPICTEX -DPS -DPSTEX -DTEXTYL -DTPIC
.SUFFIXES: .c .o
.c.o:
	$(CC) $(CFLAGS) $(DRIVERS) -c $<


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

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

CFLAGS =  -g
#CFLAGS = -O

TARGET = fig2dev$(TARGET_ARCH)

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

$(LIBS): always
	(cd dev; make CC="$(CC)" CFLAGS="$(CFLAGS)")

$(OBJ): object.h fig2dev.h drivers.h


#########
always:

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

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