From b4f9c2a86c316820850bf87961ff279bfdd41d05 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 29 May 2017 08:50:17 -0400 Subject: [PATCH] MacOS port fix. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index d4c82b5..362f586 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,11 @@ # Makefile for the open-source release of adventure 2.5 LIBS=-lrt +UNAME_S := $(shell uname -s) +ifeq ($(UNAME_S),Darwin) + LIBS= +endif + OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control