diff options
Diffstat (limited to '')
-rw-r--r-- | mktmp/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mktmp/Makefile b/mktmp/Makefile new file mode 100644 index 0000000..d915af2 --- /dev/null +++ b/mktmp/Makefile @@ -0,0 +1,9 @@ +OBJS=mktmp +include ../include/rules.make +CFLAGS+=-momit-leaf-frame-pointer + +%: %.c + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< + strip -R .comment -R .note $@ + objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true + sstrip $@ |