Mercurial > hg > early-roguelike
comparison rogue3/Makefile @ 4:ca928738f2a0
Change the default binary name to rogue3
author | edwarj4 |
---|---|
date | Thu, 15 Oct 2009 01:26:19 +0000 |
parents | b4856d4d4c4e |
children | a731f515575e |
comparison
equal
deleted
inserted
replaced
3:e551d384f7c6 | 4:ca928738f2a0 |
---|---|
8 # | 8 # |
9 # See the file LICENSE.TXT for full copyright and licensing information. | 9 # See the file LICENSE.TXT for full copyright and licensing information. |
10 # | 10 # |
11 | 11 |
12 DISTNAME=rogue3.6.4 | 12 DISTNAME=rogue3.6.4 |
13 PROGRAM=rogue | 13 PROGRAM=rogue3 |
14 | 14 |
15 O=o | 15 O=o |
16 | 16 |
17 HDRS= rogue.h machdep.h | 17 HDRS= rogue.h machdep.h |
18 | 18 |
37 $(DOCSRC) | 37 $(DOCSRC) |
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\" -DSAVEDIR=\"/usr/local/games/roguelike/rogue3save/\" | 42 CFLAGS= $(COPTS) $(ROPTS) -DSCOREFILE=\"/usr/local/games/roguelike/rogue3.scr\" \ |
43 -DSAVEDIR=\"/usr/local/games/roguelike/rogue3save/\" | |
43 LIBS = -lcurses | 44 LIBS = -lcurses |
44 RM = rm -f | 45 RM = rm -f |
45 LD = $(CC) | 46 LD = $(CC) |
46 LDOUT = -o | 47 LDOUT = -o |
47 | 48 |