From: Shamus Hammons Date: Fri, 3 Oct 2003 07:56:20 +0000 (+0000) Subject: Added a 'strip' command to make smaller executables X-Git-Tag: 1.0.7~98 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d69a0cc312d7238f453b312f227cddd2cdf1951;p=virtualjaguar Added a 'strip' command to make smaller executables --- diff --git a/Makefile.unix b/Makefile.unix index 2a77425..b324be3 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -81,6 +81,7 @@ obj/%.o: src/%.cpp vj: $(OBJS) $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + strip --strip-all vj$(EXESUFFIX) # upx -9 vj$(EXESUFFIX) # Other stuff that has unusual dependencies diff --git a/Makefile.win32 b/Makefile.win32 index c2b045b..8f56e4a 100644 --- a/Makefile.win32 +++ b/Makefile.win32 @@ -81,6 +81,7 @@ obj/%.o: src/%.cpp vj: $(OBJS) $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + strip --strip-all vj$(EXESUFFIX) # upx -9 vj$(EXESUFFIX) # Other stuff that has unusual dependencies