Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ GDTFLAG = -DALLOW_GDT

# Compilation flags
CFLAGS = -g #-static
LDFLAGS =
# On SCO Unix Development System 3.2.2a, the const type qualifier does
# not work correctly when using cc. The following line will cause it
# to not be used and should be uncommented.
Expand All @@ -66,7 +67,7 @@ OBJS = actors.o ballop.o clockr.o demons.o dgame.o dinit.o dmain.o\
nrooms.o objcts.o rooms.o sobjs.o supp.o sverbs.o verbs.o villns.o

dungeon: $(OBJS) dtextc.dat
$(CC) $(CFLAGS) -o zork $(OBJS) $(LIBS)
$(CC) $(CFLAGS) -o zork $(OBJS) $(LDFLAGS) $(LIBS)

install: zork dtextc.dat
mkdir -p $(BINDIR) $(LIBDIR) $(MANDIR)/man6
Expand Down