Mercurial > hg > early-roguelike
annotate rogue4/Makefile.in @ 140:856017d63519
xrogue: don't segfault when backstabbing while empty-handed.
The code for backstabbing checked the weapon's properties without
making sure it was not NULL.
| author | John "Elwin" Edwards |
|---|---|
| date | Tue, 05 May 2015 12:12:20 -0400 |
| parents | 97f8fdf9595c |
| children | 0e99eade579c |
| rev | line source |
|---|---|
| 51 | 1 # |
| 2 # Makefile for rogue | |
| 3 # @(#)Makefile 4.13 (Berkeley) 1/23/82 | |
| 4 # | |
| 5 # Rogue: Exploring the Dungeons of Doom | |
| 6 # Copyright (C) 1980, 1981, 1982 Michael Toy, Ken Arnold and Glenn Wichman | |
| 7 # All rights reserved. | |
| 8 # | |
| 9 # See the file LICENSE.TXT for full copyright and licensing information. | |
| 10 # | |
| 11 | |
| 12 DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@ | |
| 13 PACKAGE_TARNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@ | |
| 14 PROGRAM=@PROGRAM@ | |
| 15 | |
| 16 CC = @CC@ | |
| 17 LIBS = @LIBS@ | |
| 18 | |
| 19 SCOREFILE=@SCOREFILE@ | |
| 20 LOGFILE=@LOGFILE@ | |
| 21 SAVEDIR=@SAVEDIR@ | |
| 22 LOCKFILE=@LOCKFILE@ | |
|
116
97f8fdf9595c
Makefiles: don't set defaults for CFLAGS.
John "Elwin" Edwards
parents:
109
diff
changeset
|
23 |
| 51 | 24 GROUPOWNER=@GROUPOWNER@ |
| 25 | |
| 93 | 26 DESTDIR= |
| 51 | 27 prefix=@prefix@ |
| 28 exec_prefix=@exec_prefix@ | |
| 29 datarootdir=@datarootdir@ | |
| 30 bindir=@bindir@ | |
| 31 mandir=@mandir@ | |
| 32 man6dir=$(mandir)/man6 | |
| 33 docdir=@docdir@ | |
| 34 | |
|
104
fbc75509f4cd
Add config.h to the list of headers in the Makefiles.
John "Elwin" Edwards
parents:
96
diff
changeset
|
35 HDRS= rogue.h extern.h config.h |
| 51 | 36 DOBJS= vers.o extern.o armor.o chase.o command.o daemon.o daemons.o \ |
| 37 fight.o init.o io.o list.o main.o misc.o monsters.o move.o \ | |
| 38 new_level.o options.o pack.o passages.o potions.o rings.o rip.o \ | |
| 39 rooms.o save.o scrolls.o state.o sticks.o things.o weapons.o wizard.o\ | |
| 40 xcrypt.o mdport.o | |
| 41 OBJS= $(DOBJS) mach_dep.o | |
| 42 CFILES= vers.c extern.c armor.c chase.c command.c daemon.c daemons.c \ | |
| 43 fight.c init.c io.c list.c main.c misc.c monsters.c move.c \ | |
| 44 new_level.c options.c pack.c passages.c potions.c rings.c rip.c \ | |
| 45 rooms.c save.c scrolls.c state.c sticks.c things.c weapons.c wizard.c \ | |
| 46 mach_dep.c xcrypt.c mdport.c | |
| 47 MISC= Makefile LICENSE.TXT rogue.6 rogue.me | |
| 48 | |
|
116
97f8fdf9595c
Makefiles: don't set defaults for CFLAGS.
John "Elwin" Edwards
parents:
109
diff
changeset
|
49 CFLAGS= |
