aboutsummaryrefslogtreecommitdiff
path: root/wd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--wd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/wd/Makefile b/wd/Makefile
index f355d00..6f1fa72 100644
--- a/wd/Makefile
+++ b/wd/Makefile
@@ -3,7 +3,7 @@ include ../include/rules.make
CFLAGS+=-fomit-frame-pointer
%: %.c
- $(CC) $(LDFLAGS) $(CFLAGS) -W -Wall -o $@ $<
+ $(CC) $(LDFLAGS) $(CFLAGS) -W -Wall -U_FORTIFY_SOURCE -o $@ $<
$(STRIP) -x --strip-unneeded -R .comment -R .note $@
$(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true
-if [ -n "$(SSTRIP)" ]; then $(SSTRIP) $@ ; fi