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

⟦1aa83b51f⟧ TextFile

    Length: 724 (0x2d4)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./babel/swedish/SLaTeX/spell/Makefile« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦23cd347d5⟧ »unix3.0/babel.tar.Z« 
        └─⟦2fb9f645a⟧ 
            └─⟦this⟧ »babel/swedish/SLaTeX/spell/Makefile« 

TextFile

#	Makefile for detex and others
#
#	Sven 860110

ALL=	detex destex delatex deslatex funiq s-spell
CFLAGS=	-O
DESTDIR=    /usr/local/bin

all:	$(ALL)

detex:	detex.o
	cc -o detex detex.o -ll

destex:	destex.o
	cc -o destex destex.o -ll

delatex:    delatex.o
	    cc -o delatex delatex.o -ll

deslatex:   deslatex.o
	    cc -o deslatex deslatex.o -ll

funiq:   funiq.o
	    cc -o funiq funiq.o

s-spell:	s-spell.sh
	cp s-spell.sh s-spell
	chmod +x s-spell

s-spell.sh:	/usr/bin/spell
	cp /usr/bin/spell s-spell.sh
	patch s-spell.sh < spell.patch

install:    $(ALL)
	    for i in $(ALL); do \
		install -s $$i $(DESTDIR)/$$i; done

instman:;   cp detex.1 /usr/man/manl/detex.l

debug:
	lex deslatex.l
	mv lex.yy.c deslatex.c