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

⟦0d7d722ff⟧ TextFile

    Length: 441 (0x1b9)
    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/dev/Makefile« 

TextFile

#
#	Fig2dev Driver Library Makefile
#
.SUFFIXES: .c .o
.c.o:
	$(CC) $(CFLAGS) $(INCLUDES) -c $<
INCLUDES = -I..
CFLAGS = -g $(INCLUDES)
#CFLAGS =  -O $(INCLUDES)

OBJ =  genbox.o genepic.o genlatex.o genpic.o genpictex.o genps.o\
	genpstex.o gentextyl.o gentpic.o
LIB = lib$(TARGET_ARCH).a

$(LIB) : $(OBJ)
	ar rc $(LIB) $(OBJ)
	ranlib $(LIB)

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

#########
tidy: 
	rm -f *.o

clean :
	rm -f *.o core lib*.a