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

⟦cafb9f320⟧ TextFile

    Length: 312 (0x138)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

OBJECTS	=	main.o game.o key.o screen.o
CFLAGS	=	-O
LIBS	=	-lcurses -ltermlib

yahtzee:	${OBJECTS}
	cc -s -o yahtzee ${OBJECTS} ${LIBS}

install:	yahtzee
	cp yahtzee /usr/games
	cp README /usr/games/man/yahtzee.doc

main.o:		main.c types.h
game.o:		game.c types.h
key.o:		key.c types.h
screen.o:	screen.c types.h