aboutsummaryrefslogtreecommitdiff
path: root/lcd/Makefile
blob: 573dad838e5c73405c2535be92d853d5fc100dce (plain) (blame)
1
2
3
4
5
6
7
8
9
OBJS=lcdwrite lcdtee
include ../include/rules.make
CFLAGS+=-fomit-frame-pointer

%:	%.c
	$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
	$(STRIP) -x --strip-unneeded -R .comment -R .note $@
	$(OBJDUMP) -h $@ | grep -q '\.data[ ]*00000000' && $(STRIP) -R .data $@ || true
	sstrip $@