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

⟦74561e9df⟧ TextFile

    Length: 403 (0x193)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Challenge/Makefile« 

TextFile

DESTDIR = /usr/games
MANDIR = /usr/games/man
DOCDIR = /usr/games/man
CFLAGS = -O -DSHELL -DTIMER=1
OBJS = main.o strategy.o human.o instructions.o logging.o demo.o alarm.o

challenge:	$(OBJS)
	cc -o challenge $(OBJS) -lcurses -ltermcap
	strip challenge

clear:
	rm -f $(OBJS) core

install:	challenge
	cp challenge $(DESTDIR)
	cp challenge.6 $(MANDIR)
	cp challenge.doc $(DOCDIR)

$(OBJS):	challenge.h