From 289709fe1bb57d72af9527bdec047c67dfafc246 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 20 Dec 2008 03:10:34 +0100 Subject: [PATCH] utils/Makefile: strip bins. --HG-- extra : convert_revision : 9564aae74870e43e921b7d85265d68e40c273a2a --- utils/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/Makefile b/utils/Makefile index 52ab797e8d2..a15129cc754 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -2,6 +2,7 @@ PREFIX ?= /usr/local CFLAGS += -Wall -Werror -O3 -I$(PREFIX)/include CFLAGS += -funroll-all-loops -ftree-loop-linear LDFLAGS += -lprop +BINS ?= xbps-bin xbps-cmpver xbps-digest xbps-pkgdb all: xbps_digest xbps_pkgdb xbps_bin xbps-cmpver clean_objs @@ -33,6 +34,7 @@ xbps_bin: xbps-bin.o plist.o $(CC) $(LDFLAGS) -o xbps-bin xbps-bin.o plist.o clean_objs: + strip -s $(BINS) -rm -f *.o clean: clean_objs