Mercurial > hg > early-roguelike
annotate arogue5/Makefile.in @ 158:2515e03b2f09
arogue7, xrogue: add 'install' targets to Makefiles.
'make install' and 'make uninstall' should now work as expected.
| author | John "Elwin" Edwards |
|---|---|
| date | Thu, 04 Jun 2015 17:08:40 -0400 |
| parents | 97f8fdf9595c |
| children | a666e4a034ed |
| rev | line source |
|---|---|
| 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 | |
|
104
fbc75509f4cd
Add config.h to the list of headers in the Makefiles.
John "Elwin" Edwards
parents:
99
diff
changeset
|
33 HDRS = rogue.h mach_dep.h network.h config.h |
| 99 | 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= \ | |
| 44 vers.c chase.c command.c daemon.c daemons.c encumb.c \ | |
|
dfeed24bb616
arogue5: port to autoconf.
|
