aboutsummaryrefslogtreecommitdiff
path: root/lcd/Makefile
blob: 06e0926144959629d71d597a2961fb398c0b227b (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 -R .comment -R .note $@
	objdump -h $@ | grep -q '\.data[ ]*00000000' && strip -R .data $@ || true
	sstrip $@