aboutsummaryrefslogtreecommitdiff
path: root/Make.include
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-06-18 12:54:48 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-06-18 12:54:48 +0000
commit464dc2b8806c1464b92ccbedfac685fa20480da8 (patch)
treedfcbedb4a7335c772a7e664e0fc47e04f1012edc /Make.include
parentb70647e8509805f4f0a6439ac2dddde837719082 (diff)
try to avoid copying the binaries to a file "lib" if
the directory "lib/" does not exist svn path=/trunk/externals/iemlib/; revision=10023
Diffstat (limited to 'Make.include')
-rw-r--r--Make.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/Make.include b/Make.include
index 456c00a..d365fa5 100644
--- a/Make.include
+++ b/Make.include
@@ -12,7 +12,7 @@ LIB = -ldl -lm -lpthread
#select either the DBG and OPT compiler flags below:
CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \
-Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing \
- -DDL_OPEN -fPIC
+ -DDL_OPEN -fPIC -fno-stack-protector
INCLUDE = -I. -I$(PDSOURCE)
@@ -34,7 +34,7 @@ all: $(OBJ)
@echo :: $(OBJ)
ld $(LDFLAGS) -o $(TARGET).$(EXT) *.o $(LIB)
strip --strip-unneeded $(TARGET).$(EXT)
- -cp $(TARGET).$(EXT) ../../lib
+ -cp $(TARGET).$(EXT) ../../lib/
$(OBJ) : %.o : %.c
touch $*.c