1
0

rogue posix port

This commit is contained in:
dtb
2023-11-25 04:23:54 -07:00
parent cfa82df72b
commit 099418e509
27 changed files with 11891 additions and 0 deletions

11
rogue/Makefile Normal file
View File

@@ -0,0 +1,11 @@
# $NetBSD: Makefile,v 1.22 2023/06/03 09:09:09 lukem Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
#
CFLAGS += -DUNIX -lcurses
SRC = hit.c init.c inventory.c level.c machdep.c main.c message.c monster.c \
move.c object.c pack.c play.c random.c ring.c room.c save.c score.c \
spec_hit.c throw.c trap.c use.c zap.c
rogue: $(SRC)
$(CC) $(CFLAGS) -o rogue $(SRC)