aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorultramn <dchapm2@umbc.edu>2017-03-16 18:22:32 -0700
committerultramn <dchapm2@umbc.edu>2017-03-16 18:22:32 -0700
commit1837afbe2aa17af10fa508d71807912b0da6ec50 (patch)
tree8fdc93bca70b81bb8ac87d64f830b475ed342f12
parent47d2e48cdb9d894e011fd02ed18486adefc49c72 (diff)
downloadlibsurvive-1837afbe2aa17af10fa508d71807912b0da6ec50.tar.gz
libsurvive-1837afbe2aa17af10fa508d71807912b0da6ec50.tar.bz2
Makefile now compiles on Mac
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 11f18f9..03f37d6 100644
--- a/Makefile
+++ b/Makefile
@@ -13,13 +13,13 @@ UNAME=$(shell uname)
# Mac OSX
ifeq ($(UNAME), Darwin)
-DRAWFUNCTIONS_C=redist/RawDrawNull.c
-GRAPHICS_LOFI:=redist/RawDrawNull.o
+DRAWFUNCTIONS=redist/DrawFunctions.c redist/RawDrawNull.c
+GRAPHICS_LOFI:=redist/DrawFunctions.o redist/RawDrawNull.o
# Linux / FreeBSD
else
LDFLAGS:=$(LDFLAGS) -lX11
-DRAWFUNCTIONS_C=redist/XDriver.c redist/DrawFunctions.c
+DRAWFUNCTIONS=redist/DrawFunctions.c redist/XDriver.c
GRAPHICS_LOFI:=redist/DrawFunctions.o redist/XDriver.o
endif