diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-06-05 03:01:20 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-06-05 03:01:20 +0000 |
commit | a4469cbccaa2e64c80e24742f01082b41f870021 (patch) | |
tree | 7dc7e026e0bc7584bd592f83e236470499f4c7bf /Makefile | |
parent | 67a3b4ed87d68e69124cd01bd5d90732a535cd62 (diff) |
removed UNIX macro and replaced with auto macros
svn path=/trunk/externals/ext13/; revision=11676
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ ifeq ($(UNAME),Darwin) SOURCES += EXTENSION = pd_darwin OS = macosx - CFLAGS += -DUNIX -fPIC + CFLAGS += -fPIC OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 -fast LDFLAGS += -bundle -undefined dynamic_lookup LIBS += -lc @@ -26,7 +26,7 @@ ifeq ($(UNAME),Linux) EXTENSION = pd_linux OS = linux OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer - CFLAGS += -DUNIX -fPIC + CFLAGS += -fPIC LDFLAGS += -Wl,--export-dynamic -shared -fPIC LIBS += -lc STRIP = strip --strip-unneeded -R .note -R .comment |