aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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