|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 627 (0x273) Types: TextFile Names: »Makefile«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Greed/Makefile«
# Makefile for Greed v2.0c, by Matthew T. Day (mday@ohs.uucp) # Choose BSD for Berkeley Unix, NOTBSD for all others SYSDEF=BSD #SYSDEF=NOTBSD # Location of high score file SFILE=/usr/games/lib/greed.hs # Location of game executable BIN=/usr/games CFLAGS=-O -s # You may need to modify the libraries used below according to your site, # e.g. -ltermcap for Berkeley and Xenix, -ltermlib for AT&T SYSV. LIBS=-lcurses -ltermcap #LIBS=-lcurses -ltermlib greed: greed.c cc -DSCOREFILE=\"$(SFILE)\" -D$(SYSDEF) -o greed greed.c $(CFLAGS) $(LIBS) install: greed cp greed $(BIN) chmod 4711 $(BIN)/greed clean: rm -f *.o greed