mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
make: change the clean rule to remove both release and debug objects.
This commit is contained in:
parent
27a133c4fd
commit
037b57a4bd
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
@ -16,10 +16,12 @@ include config.mk
|
|||
|
||||
TARGET = retroarch
|
||||
|
||||
OBJDIR_BASE := obj-unix
|
||||
|
||||
ifeq ($(DEBUG), 1)
|
||||
OBJDIR := obj-unix/debug
|
||||
OBJDIR := $(OBJDIR_BASE)/debug
|
||||
else
|
||||
OBJDIR := obj-unix/release
|
||||
OBJDIR := $(OBJDIR_BASE)/release
|
||||
endif
|
||||
|
||||
OBJ :=
|
||||
|
@ -236,7 +238,7 @@ uninstall:
|
|||
rm -rf $(DESTDIR)$(ASSETS_DIR)/retroarch
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJDIR)
|
||||
rm -rf $(OBJDIR_BASE)
|
||||
rm -f $(TARGET)
|
||||
rm -f *.d
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue