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

⟦ca64d2e95⟧ TextFile

    Length: 1002 (0x3ea)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦6abfa5b66⟧ »utils/tgrind.tar.Z« 
        └─⟦02e344965⟧ 
            └─⟦this⟧ »Makefile« 

TextFile

#	@(#)Makefile	4.1	(Berkeley)	10/19/82
#
DESTDIR=/usr/local
DEFSFILE=/usr/local/lib/tgrindefs
TEXINPUTS=/usr/local/lib/tex82

CFLAGS=-O 
SOURCES=tfontedpr.c vgrindefs.c regexp.c
CMDS=tfontedpr
OBJS=retest.o regexp.o tfontedpr.o vgrindefs.o

all:	$(CMDS)

tfontedpr: tfontedpr.o vgrindefs.o regexp.o
	cc ${CFLAGS} -o tfontedpr tfontedpr.o vgrindefs.o regexp.o

tfontedpr.o: tfontedpr.c
	cc ${CFLAGS} -DDEFSFILE=\"${DEFSFILE}\" -c tfontedpr.c

tar:
	tar cvf /tmp/tgrind.tar \
		Makefile README \
		tgrind.1 tgrind tgrindmac.tex tgrind.sty tgrindefs \
		regexp.c retest.c tfontedpr.c vgrindefs.c
	compress /tmp/tgrind.tar

retest: retest.o regexp.o
	cc ${CFLAGS} -o retest retest.o regexp.o

install: all
	install -s tfontedpr ${DESTDIR}/lib/tfontedpr
	install -c tgrind ${DESTDIR}/tgrind
	install -c tgrindmac.tex ${TEXINPUTS}/tgrindmac.tex
	install -c tgrind.sty ${TEXINPUTS}/tgrind.sty
	install -c tgrindefs ${DEFSFILE}
	install -c tgrind.1 /usr/man/manl/tgrind.l

clean:
	rm -f ${CMDS} ${OBJS} retest