Revert "Append _debug to debug builds and add file to .gitignore"

This commit is contained in:
Alcaro 2016-09-08 18:23:26 +02:00 committed by GitHub
parent e10fb993ff
commit c9e4511e37
2 changed files with 1 additions and 6 deletions

1
.gitignore vendored
View File

@ -11,7 +11,6 @@ config.log
/retroarch
/retroarch.cfg
/retroarch.exe
/retroarch_debug.exe
/config.h
/config.mk
/tools/retroarch-joyconfig

View File

@ -131,11 +131,7 @@ endif
retroarch: $(RARCH_OBJ)
@$(if $(Q), $(shell echo echo LD $@),)
ifeq ($(DEBUG), 1)
$(Q)$(LINK) -o $@_debug $(RARCH_OBJ) $(LIBS) $(LDFLAGS) $(LIBRARY_DIRS)
else
$(Q)$(LINK) -o $@ $(RARCH_OBJ) $(LIBS) $(LDFLAGS) $(LIBRARY_DIRS)
endif
$(Q)$(LINK) -o $@ $(RARCH_OBJ) $(LIBS) $(LDFLAGS) $(LIBRARY_DIRS)
$(OBJDIR)/%.o: %.c config.h config.mk
@mkdir -p $(dir $@)