aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-10-13 11:56:36 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-10-13 11:56:36 +0000
commit63016f71e1fd85db7be41c299d751216ccb1b075 (patch)
tree0e0973880509945a59816c25b78eccab278617ce /src/Makefile.in
parentfd88e3c54a2cd3d16c944d5c23bc5a29047a9b91 (diff)
better check for strip and friends
svn path=/trunk/externals/iem/iemmatrix/; revision=3707
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index ae68ab0..ac80b61 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -12,7 +12,7 @@ MAKEDEP_FLAGS = @MAKEDEP_FLAGS@
CC = @CC@
LD = @LD@
-STRIP = @STRIP@
+STRIP = @STRIP@ @STRIPFLAGS@
AFLAGS =
LFLAGS = @LFLAGS@
@@ -34,7 +34,7 @@ all: $(LIBNAME)
$(LIBNAME): $(TARGETS)
$(LD) $(LFLAGS) -o $(LIBNAME).$(EXT) *.o $(LIBS)
- $(STRIP) @STRIPFLAGS@ $(LIBNAME).$(EXT)
+ $(STRIP) $(LIBNAME).$(EXT)
## dependencies: as proposed by the GNU-make documentation
## see http://www.gnu.org/software/make/manual/html_node/make_47.html#SEC51