|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 784 (0x310) Types: TextFile Names: »Makefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/TeXgraphics/transfig/fig2dev/Makefile«
# 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)