Fixed a bug in the makefile - strip 86Box.exe should now be executed.

This commit is contained in:
OBattler
2017-05-05 02:35:21 +02:00
parent 2262ad3ba0
commit 55be173485
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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