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

⟦5b06682ef⟧ TextFile

    Length: 388 (0x184)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# makefile for centipede
# edit sys_dep.c to adjust pathnames for your system
#
CFLAGS = -O

OBJECTS = cent.o stuff.o input.o interrupts.o score.o move.o rand.o \
		save.o shoot.o la.o extern.o options.o sys_dep.o

cent:   $(OBJECTS)
	cc -s -x -o cent $(OBJECTS) -lcurses -ltermcap -lm

cent.o stuff.o input.o move.o shoot.o save.o extern.o options.o: cent.h
input.o options.o: sys_dep.h