blob: a093caa6c876a790fceb2d3abd0b390bcdc31286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
OBJS=wdd
include ../include/rules.make
CFLAGS+=-fomit-frame-pointer
%: %.c
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
strip -R .comment -R .note $@
objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true
sstrip $@
|