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: T m

⟦89a1a87bb⟧ TextFile

    Length: 869 (0x365)
    Types: TextFile
    Names: »makefile«

Derivation

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

TextFile

# makefile for hangman game
# written by ritcv!jxs7451
#
DOTO= lib.o hangman.o doargs.o getwd.o turninfo.o wordguess.o\
      getlet.o getrand.o doquit.o screen.o

hangman:  $(DOTO)
	cc $(DOTO) -ltermcap -o hangman

# .o dependancies
lib.o:        lib.c hangman.h
hangman.o:    hangman.c lib.o doargs.o getwd.o turninfo.o wordguess.o\
              doquit.o getlet.o hangman.h screen.o
doargs.o:     doargs.c hangman.h lib.o screen.o
getwd.o:      getwd.c hangman.h getrand.o screen.o lib.o
turninfo.o:   turninfo.c hangman.h screen.o lib.o
wordguess.o:  wordguess.c hangman.h screen.o lib.o
getlet.o:     getlet.c hangman.h screen.o lib.o
getrand.o:    getrand.c hangman.c screen.o lib.o
doquit.o:     doquit.c hangman.h screen.o lib.o
screen.o:     screen.c

#definition of .c
.c.o:
	cc -c -O $*.c
#do nroff for man page
doc:
	nroff -man -h hangman.6 | /usr/ucb/more