From 1837afbe2aa17af10fa508d71807912b0da6ec50 Mon Sep 17 00:00:00 2001 From: ultramn Date: Thu, 16 Mar 2017 18:22:32 -0700 Subject: Makefile now compiles on Mac --- Makefile | 6 +++--- 1 file 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 -- cgit v1.2.3