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

⟦3dcf442a2⟧ TextFile

    Length: 498 (0x1f2)
    Types: TextFile
    Names: »Makefile.orig«

Derivation

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

TextFile

# Makefile for wanderer - modified by Bill Randle 6/30/88
# modified again by play@cwi.nl
# and again by me.. maujp@uk.ac.warwick.cu

OBJ = m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o

CFLAGS = -O
LIBS = -lcurses -ltermcap

all:	wanderer
	@echo DONE

wanderer:	$(OBJ)
	cc $(CFLAGS) -o wanderer $(OBJ) $(LIBS)

$(OBJ): wand_head.h

install:
	@mkdir /usr/games/lib/wand
	cp -r screens /usr/games/lib/wand
	touch /usr/games/lib/wand/hiscores
	mv wanderer /usr/games