|
99
|
1 #
|
|
|
2 # Makefile for rogue
|
|
|
3 #
|
|
|
4 # Advanced Rogue
|
|
|
5 # Copyright (C) 1984, 1985 Michael Morgan, Ken Dalka and AT&T
|
|
|
6 # All rights reserved.
|
|
|
7 #
|
|
|
8 # Based on "Rogue: Exploring the Dungeons of Doom"
|
|
|
9 # Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman
|
|
|
10 # All rights reserved.
|
|
|
11 #
|
|
|
12 # See the file LICENSE.TXT for full copyright and licensing information.
|
|
|
13 #
|
|
|
14
|
|
|
15 DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
|
|
|
16 PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
|
|
|
17 PROGRAM=@PROGRAM@
|
|
|
18
|
|
|
19 SCOREFILE=@SCOREFILE@
|
|
|
20 LOGFILE=@LOGFILE@
|
|
|
21 SAVEDIR=@SAVEDIR@
|
|
|
22 GROUPOWNER=@GROUPOWNER@
|
|
|
23
|
|
|
24 DESTDIR=
|
|
|
25 prefix=@prefix@
|
|
|
26 exec_prefix=@exec_prefix@
|
|
|
27 datarootdir=@datarootdir@
|
|
|
28 bindir=@bindir@
|
|
|
29 docdir=@docdir@
|
|
|
30
|
|
|
31 O=o
|
|
|
32
|
|
|
33 HDRS = rogue.h mach_dep.h network.h
|
|
|
34 OBJS1 = chase.$(O) command.$(O) daemon.$(O) daemons.$(O) encumb.$(O) \
|
|
|
35 fight.$(O) init.$(O) io.$(O) list.$(O) main.$(O) maze.$(O) mdport.$(O)\
|
|
|
36 misc.$(O) monsters.$(O) move.$(O) new_level.$(O) options.$(O) \
|
|
|
37 outside.$(O)
|
|
|
38 OBJS2 = pack.$(O) passages.$(O) player.$(O) potions.$(O) rings.$(O) rip.$(O) \
|
|
|
39 rogue.$(O) rooms.$(O) save.$(O) scrolls.$(O) state.$(O) sticks.$(O) \
|
|
|
40 things.$(O) trader.$(O) util.$(O) vers.$(O) weapons.$(O) wear.$(O) \
|
|
|
41 wizard.$(O) xcrypt.$(O)
|
|
|
42 OBJS = $(OBJS1) $(OBJS2)
|
|
|
43 CFILES= \
|
John "Elwin" Edwards
parents:
|