comparison rogue3/Makefile @ 16:a731f515575e

rogue3: add the option of logging all games to a text file
author edwarj4
date Tue, 10 Nov 2009 22:38:46 +0000
parents ca928738f2a0
children bbf072f8bafa
comparison
equal deleted inserted replaced
15:7ef854484e08 16:a731f515575e
38 38
39 CC = gcc 39 CC = gcc
40 ROPTS = 40 ROPTS =
41 COPTS = -O3 41 COPTS = -O3
42 CFLAGS= $(COPTS) $(ROPTS) -DSCOREFILE=\"/usr/local/games/roguelike/rogue3.scr\" \ 42 CFLAGS= $(COPTS) $(ROPTS) -DSCOREFILE=\"/usr/local/games/roguelike/rogue3.scr\" \
43 -DSAVEDIR=\"/usr/local/games/roguelike/rogue3save/\" 43 -DSAVEDIR=\"/usr/local/games/roguelike/rogue3save/\" \
44 -DLOGFILE=\"/usr/local/games/roguelike/rogue3.log\"
44 LIBS = -lcurses 45 LIBS = -lcurses
45 RM = rm -f 46 RM = rm -f
46 LD = $(CC) 47 LD = $(CC)
47 LDOUT = -o 48 LDOUT = -o
48 49