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

⟦652f7869d⟧ TextFile

    Length: 452 (0x1c4)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# @(#)Makefile	1.5 3/22/89
OBJS = suntetris.o suntetris_pw.o
CFLAGS = -O
LIBS = -lsuntool -lsunwindow -lpixrect

# Change this to desired highscore file before compiling
# i.e. "/usr/games/suntetris.hs"
HIGHSCOREFILE = /ufs/play/lib.sun/suntetris.hs

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

suntetris.o: suntetris.h

suntetris_pw.o: suntetris.h suntetris_pw.c
	cc $(CFLAGS) -c -DHIGHSCOREFILE=\"$(HIGHSCOREFILE)\" suntetris_pw.c