1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-03 02:18:43 +00:00

Add clean options to makefile

This commit is contained in:
cathery 2019-12-08 21:43:30 +03:00
parent 275eaa9310
commit 677f5cd7f4

View File

@ -154,7 +154,7 @@ ifneq ($(ROMFS),)
export NROFLAGS += --romfsdir=$(CURDIR)/$(ROMFS) export NROFLAGS += --romfsdir=$(CURDIR)/$(ROMFS)
endif endif
.PHONY: all buildApplet buildSysmodule applet sysmodule .PHONY: all buildApplet buildSysmodule applet sysmodule cleanApplet cleanSysmodule
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
all: sysmodule all: sysmodule
@ -180,8 +180,13 @@ applet: buildApplet
sysmodule: buildSysmodule sysmodule: buildSysmodule
clean: cleanApplet:
@rm -fr buildSysmodule buildApplet $(TARGET).nro $(TARGET).nacp $(TARGET).elf exefs.nsp $(TARGET).nsp $(TARGET).nso $(TARGET).npdm $(TARGET).elf @echo clean applet ...
@rm -fr buildApplet $(TARGET).nro $(TARGET).nacp $(TARGET).elf
cleanSysmodule:
@echo clean sysmodule ...
@rm -fr buildSysmodule exefs.nsp $(TARGET).nsp $(TARGET).nso $(TARGET).npdm $(TARGET).elf
# Makefile commands # Makefile commands
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------