aboutsummaryrefslogtreecommitdiff
path: root/mktmp/Makefile
blob: e4e9ccc2bdeaa0fb12cb92735aa46709b8c07b07 (plain) (blame)
1
2
3
4
5
6
7
8
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 $@