Mercurial > hg > early-roguelike
changeset 273:51ddbe7b992d
UltraRogue: begin autoconfiscation.
Build options can now be set with configure.
| author | John "Elwin" Edwards |
|---|---|
| date | Mon, 04 Sep 2017 21:08:09 -0400 |
| parents | 1db299e868b8 |
| children | 603e8a99c859 |
| files | urogue/Makefile urogue/Makefile.in urogue/acinclude.m4 urogue/configure.ac urogue/getplay.c urogue/main.c urogue/mdport.c |
| diffstat | 7 files changed, 481 insertions(+), 178 deletions(-) [+] |
line wrap: on
line diff
--- a/urogue/Makefile Sun Sep 03 19:58:22 2017 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,171 +0,0 @@ -# UltraRogue: The Ultimate Adventure in the Dungeons of Doom -# Copyright (C) 1985, 1986, 1992, 1993, 1995 Herb Chong -# All rights reserved. -# -# See the file LICENSE.TXT for full copyright and licensing information. - -# -# Makefile for urogue -# - -DISTNAME=urogue1.0.7 - -HDRS = dict.h dictutil.h rogue.h -OBJS = armor.o \ - artifact.o \ - bag.o \ - chase.o \ - command.o \ - daemon.o \ - daemons.o \ - dict.o \ - dictutil.o \ - encumb.o \ - fight.o \ - getplay.o \ - ident.o \ - init.o \ - io.o \ - list.o \ - magic.o \ - main.o \ - maze.o \ - mdport.o \ - memory.o \ - misc.o \ - monsdata.o \ - monsters.o \ - move.o \ - newlvl.o \ - options.o \ - pack.o \ - passages.o \ - player.o \ - potions.o \ - random.o \ - rings.o \ - rip.o \ - rooms.o \ - save.o \ - scrolls.o \ - state.o \ - status.o \ - sticks.o \ - things.o \ - trader.o \ - verify.o \ - vers.o \ - weapons.o \ - wizard.o \ - xcrypt.o - -PROGRAM = ur - -CFILES = armor.c \ - artifact.c \ - bag.c \ - chase.c \ - command.c \ - daemon.c \ - daemons.c \ - dict.c \ - dictutil.c \ - encumb.c \ - fight.c \ - getplay.c \ - ident.c \ - init.c \ - io.c \ - list.c \ - magic.c \ - main.c \ - maze.c \ - mdport.c \ - memory.c \ - misc.c \ - monsdata.c \ - monsters.c \ - move.c \ - newlvl.c \ - options.c \ - pack.c \ - passages.c \ - player.c \ - potions.c \ - random.c \ - rings.c \ - rip.c \ - rooms.c \ - save.c \ - scrolls.c \ - state.c \ - status.c \ - sticks.c \ - things.c \ - trader.c \ - verify.c \ - vers.c \ - weapons.c \ - wizard.c \ - xcrypt.c - -MISC= Makefile README LICENSE.TXT history.txt TODO - -CC = gcc
