From 2613174223371677d0a701a69cb7468947940d65 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 9 May 2011 20:02:27 -0700 Subject: Add "make strip" target Add a "make strip" target, to make doing the official build easier. We want the official build to have stripped binaries for size reasons, so do it right and make it an actual build target. Signed-off-by: H. Peter Anvin --- linux/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'linux') diff --git a/linux/Makefile b/linux/Makefile index ddc2f568..82bf1118 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -57,6 +57,9 @@ syslinux: $(OBJS) syslinux-nomtools: syslinux ln -f $< $@ +strip: + $(STRIP) syslinux syslinux-nomtools + %.o: %.c $(CC) $(UMAKEDEPS) $(CFLAGS) -c -o $@ $< %.i: %.c -- cgit v1.2.1