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 - download

⟦93256a3c8⟧ TextFile

    Length: 324 (0x144)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/hier/Makefile« 

TextFile

# Makefile for hier(1), needed to link with sftw().

hier: hier.c sftw.o
	cc -v -O -s -o hier hier.c sftw.o

sftw.o: sftw.c
	cc -v -O -c sftw.c

debug: hier.c sftw.c
	cc -v -g -o hier hier.c sftw.c
	rm -f hier.o sftw.o	# since they're useless.

test: sftw.c
	cc -v -O -o sftw sftw.c -DTEST

clean:
	rm -f *.o hier sftw core