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

⟦c31e6c8c8⟧ TextFile

    Length: 738 (0x2e2)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/TeXcontrib/trinkle/Makefile« 
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/TeXcontrib/trinkle/Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af57ea0c3⟧ »utils/detex-2.3.tar« 
        └─⟦this⟧ »./Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXcontrib/trinkle/Makefile« 

TextFile

#	Makefile for detex and delatex
#
#	Daniel Trinkle
#	Computer Science Department
#	Purdue University
#
# Detex is a program to remove TeX and LaTeX constructs from text source.
#
DESTDIR	= /usr/local/bin
CFLAGS	= -O

LPR	= lpr -p

# Program names
#
PROGS	= detex

# Header files
#
HDR	= detex.h

# Sources
#
SRC	= detex.l

# Objects for various programs
#
D_OBJ	= detex.o

all:	${PROGS}

detex: ${D_OBJ}
	cc ${CFLAGS} -o $@ ${D_OBJ} -ll

man-page:
	troff -man detex.1l

install: detex
	install -c -m 775 -o binary -g staff -s detex ${DESTDIR}

clean:
	-rm -f a.out core *.s *.o ERRS errs .,* .emacs_[0-9]*
	-rm -f ${PROGS} lex.yy.c

print:	${HDR} ${SRC}
	${LPR} Makefile ${HDR} ${SRC}

# Dependencies
#
detex.o: detex.h
detex.o: detex.l