diff options
Diffstat (limited to 'Make.include')
-rw-r--r-- | Make.include | 4 |
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 |