From eb80cee874189044869edef3659e72b4fadb7a3d Mon Sep 17 00:00:00 2001 From: "Eric J. Korpela" Date: Wed, 3 Aug 2005 00:29:37 +0000 Subject: [PATCH] Added stripping of executable. svn path=/trunk/boinc/; revision=6997 --- client/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/Makefile.am b/client/Makefile.am index 222752877d..8e8a8320c8 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -57,6 +57,7 @@ boinc_client_SOURCES = \ boinc_client_DEPENDENCIES = $(LIBRSA) boinc_client_CPPFLAGS = -I $(srcdir)/win $(AM_CPPFLAGS) -O3 +boinc_client_LDFLAGS = -static-libgcc boinc_client_LDADD = -L../lib -lboinc $(RSA_LIBS) $(PTHREAD_LIBS) #boinc_client_LDFLAGS = $(STATIC_FLAGS) @@ -69,7 +70,8 @@ all-local: client-bin # make a hard link to the client name. @CLIENT_BIN_FILENAME@: boinc_client rm -f $@ - ln $? $@ + @LN@ $? $@ + @STRIP@ $@ ## these source files need to be specified because no rule uses them.