From 836bb96d9c387beddfdb77bdfce89715e761cbfd Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 20 Dec 2008 03:54:28 +0100 Subject: [PATCH] utils/Makefile: use another target to strip bins. --HG-- extra : convert_revision : e6535c674b457d95c3ee33c00193933a20116050 --- utils/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/Makefile b/utils/Makefile index a15129cc75..6bb74e2fd7 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -4,7 +4,7 @@ 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 +all: xbps_digest xbps_pkgdb xbps_bin xbps-cmpver strip_bins clean_objs xbps-cmpver: xbps-cmpver.o $(CC) $(CFLAGS) $< -o $@ @@ -33,8 +33,10 @@ xbps-bin: xbps_bin: xbps-bin.o plist.o $(CC) $(LDFLAGS) -o xbps-bin xbps-bin.o plist.o -clean_objs: +strip_bins: strip -s $(BINS) + +clean_objs: -rm -f *.o clean: clean_objs