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

⟦891bc30dd⟧ TextFile

    Length: 771 (0x303)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# Lander Makefile

# System 5.3
#
# OSV=SYS5_3
# LIBS= -lcurses -lm
# RAND_L=RAND_SYS5

# BSD Unix
#
OSV=BSD
LIBS= -lcurses -ltermcap -lm
RAND_L=RAND_BSD

# System 5.2 or earlier (untested but should work)
#
# OSV=BSD
# LIBS= -lcurses -lm
# RAND_L=RAND_SYS5

# high score file name - change for your system
HSFILE= /usr/games/lib/lander.hs

OBJS= land.o screen.o move.o score.o
SRC= land.c screen.c move.c score.c
INC= consts.h funcs.h
BIN= $(HOME)/bin
OPT= -O
HSSTRING='"$(HSFILE)"'
CFLAGS= $(OPT) -D$(RAND_L) -DHS_FILE=$(HSSTRING) -D$(OSV)

lander: $(OBJS)
	cc -o lander $(CFLAGS) $(OBJS) $(LIBS)

$(OBJS): consts.h

shar:
	xshar README lander.6 Makefile $(SRC) $(INC) > lander.shar

lint:
	lint $(CFLAGS) $(SRC)

install: lander
	rm -f $(BIN)/lander
	cp lander $(BIN)