diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-13 11:56:36 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-13 11:56:36 +0000 |
commit | 63016f71e1fd85db7be41c299d751216ccb1b075 (patch) | |
tree | 0e0973880509945a59816c25b78eccab278617ce /src/Makefile.in | |
parent | fd88e3c54a2cd3d16c944d5c23bc5a29047a9b91 (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.in | 4 |
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 |