aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-11-25 09:00:26 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-11-25 09:00:26 +0000
commit487ce934ff2099674d2a74f16e6e5a3f8fba5651 (patch)
treeabcca1da1649f0a64f3015e2e82452faabaaa4b9 /src/Makefile
parent8d18634017e968c9d3cdf2b5ecfd7fb0f3299dcc (diff)
a new loader that automagically creates abstractions
based on a template (which can be user-supplied) if the user tries to create a yet-unknown object. svn path=/trunk/externals/iem/iemguts/; revision=10380
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile
index 02b3420..eeaaaa6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -62,7 +62,7 @@ TARGETS=$(SOURCES:.c=.$(EXTENSION))
l_ia64 l_i386 pd_linux: $(TARGETS)
-LINUXCFLAGS = -DPD -g -O2 -funroll-loops -fomit-frame-pointer -fPIC \
+LINUXCFLAGS = -DPD -DMISSING_LOADER_T -g -O2 -funroll-loops -fomit-frame-pointer -fPIC \
-Wall -W -Wshadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
@@ -82,7 +82,7 @@ STRIP?=strip
pd_darwin: $(TARGETS)
-DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
+DARWINCFLAGS = -DPD -DMISSING_LOADER_T -O2 -Wall -W -Wshadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
DARWININCLUDE = -I$(PDSRCDIR)
@@ -96,7 +96,7 @@ DARWINLDFLAGS = -bundle -undefined suppress -flat_namespace
# ----------------------- IRIX 5.x -----------------------
pd_irix5: $(TARGETS)
-SGICFLAGS5 = -o32 -DPD -DSGI -O2
+SGICFLAGS5 = -o32 -DPD -DMISSING_LOADER_T -DSGI -O2
SGIINCLUDE = -I$(PDSRCDIR)
@@ -111,7 +111,7 @@ SGILDFLAGS = -elf -shared -rdata_shared
# ----------------------- IRIX 6.x -----------------------
pd_irix6: $(TARGETS)
-SGICFLAGS6 = -DPD -DSGI -n32 \
+SGICFLAGS6 = -DPD -DMISSING_LOADER_T -DSGI -n32 \
-OPT:roundoff=3 -OPT:IEEE_arithmetic=3 -OPT:cray_ivdep=true \
-Ofast=ip32
@@ -124,7 +124,7 @@ SGICFLAGS6 = -DPD -DSGI -n32 \
# ----------------------- NT -----------------------
dll: $(TARGETS)
-PDNTCFLAGS = /W3 /WX /DPD /DNT /D__WIN32__ /DMSW /nologo
+PDNTCFLAGS = /W3 /WX /DPD /DNT /D__WIN32__ /DMSW /DMISSING_LOADER_T /nologo
VC="C:\Programme\Microsoft Visual Studio\Vc98"
@@ -144,7 +144,7 @@ PDNTLIB = $(PDNTLDIR)\libc.lib \
pd_nt: $(TARGETS)
-MINGWCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \
+MINGWCFLAGS = -DPD -DMISSING_LOADER_T -O2 -funroll-loops -fomit-frame-pointer \
-Wall -W -Wshadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch -mms-bitfields