aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-07-29 13:53:12 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-07-29 13:53:12 +0000
commitbf54437dfcb9292082cc033673647a4b33ac130c (patch)
tree76a65f82916dd35e62c1b637a165c3d939ad2a0c
parenteb13b6f58fffc9e84968b64618dd5e4bcd972724 (diff)
added -fPIC to compile on 64bit machines
svn path=/trunk/externals/iem16/; revision=5429
-rw-r--r--src/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile
index d8e6685..43b2ec0 100644
--- a/src/makefile
+++ b/src/makefile
@@ -14,7 +14,7 @@ current: all
# PD will install to $(DESTDIR)$(INSTALLL_PREFIX)$(PDLIBDIR), which is /usr/local/lib/pd
# by default
DESTDIR =
-INSTALL_PREFIX = /usr
+INSTALL_PREFIX = /usr/local
PDLIBDIR = /lib/pd
#these were the user adjustables
@@ -42,7 +42,7 @@ LINCLUDE =
$(LINUXOBJECTS): *.h
#CFLAGS = -O2 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS)
-CFLAGS = -O3 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS)
+CFLAGS = -fPIC -O3 -g -Wall $(LINCLUDE) $(UCFLAGS) $(AFLAGS)
everything: clean all install distclean