mirror of
https://github.com/cathery/sys-con.git
synced 2024-12-25 00:13:52 +00:00
Add clean options to makefile
This commit is contained in:
parent
275eaa9310
commit
677f5cd7f4
11
Makefile
11
Makefile
@ -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
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user