From: Michael Gebetsroither Date: Sun, 4 Mar 2007 03:50:13 +0000 (+0100) Subject: using -s in CFLAGS not strip itself X-Git-Tag: 0.9.22~4 X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=commitdiff_plain;h=a709644bebb68dd3fd7d1f8096e29c8f9a4738e6 using -s in CFLAGS not strip itself --- diff --git a/compile/Makefile b/compile/Makefile index 96e380e..bb84258 100644 --- a/compile/Makefile +++ b/compile/Makefile @@ -1,7 +1,7 @@ PROGS = ip-screen pong vmware-detect align cpu-screen dpkg_not_running reread_partition_table gtf #ifndef CFLAGS -CFLAGS = -O2 -Wall +CFLAGS = -O2 -Wall -s #endif #ifndef LDFALGS @@ -16,27 +16,22 @@ all: $(PROGS) ip-screen: ip-screen.c diet $(CC) $(CFLAGS) -o $@ $^ - strip --strip-all $@ cpu-screen: cpu-screen.c diet $(CC) $(CFLAGS) -o $@ $^ - strip --strip-all $@ pong: pong.c vmware-detect: vmware-detect.c diet $(CC) $(CFLAGS) -o $@ $^ - strip --strip-all $@ dpkg_not_running: dpkg_not_running.c diet $(CC) $(CFLAGS) -o $@ $^ - strip --strip-all $@ align: align.c reread_partition_table: reread_partition_table.c diet $(CC) $(CFLAGS) -o $@ $^ - strip --strip-all $@ gtf: gtf.c $(CC) gtf.c -lm -Wall -o gtf