From 55be17348586484bf8099f3e174a4ee5488a622e Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 5 May 2017 02:35:21 +0200 Subject: [PATCH] Fixed a bug in the makefile - strip 86Box.exe should now be executed. --- src/Makefile.mingw | 2 +- src/Makefile.mingw64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.mingw b/src/Makefile.mingw index a41ace019..d6cd7da4d 100644 --- a/src/Makefile.mingw +++ b/src/Makefile.mingw @@ -169,7 +169,7 @@ $(PROG).exe: $(OBJ) $(DBOBJ) $(LZFOBJ) $(SIDOBJ) $(SLIRPOBJ) $(LIBS) all: $(PROG).exe -ifeq ($(DEBUG), y) +ifneq ($(DEBUG), y) strip $(PROG).exe endif diff --git a/src/Makefile.mingw64 b/src/Makefile.mingw64 index 19d33a53b..c40cd2464 100644 --- a/src/Makefile.mingw64 +++ b/src/Makefile.mingw64 @@ -169,7 +169,7 @@ $(PROG).exe: $(OBJ) $(DBOBJ) $(LZFOBJ) $(SIDOBJ) $(SLIRPOBJ) $(LIBS) all: $(PROG).exe -ifeq ($(DEBUG), y) +ifneq ($(DEBUG), y) strip $(PROG).exe endif