From 8d69a0cc312d7238f453b312f227cddd2cdf1951 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Fri, 3 Oct 2003 07:56:20 +0000 Subject: [PATCH] Added a 'strip' command to make smaller executables --- Makefile.unix | 1 + Makefile.win32 | 1 + 2 files changed, 2 insertions(+) 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 -- 2.37.2