Skip to content

Commit 91b0387

Browse files
authored
Merge pull request #22 from impeeza/impeeza-makefiles
Correct Typos on Makefiles
2 parents ce3c04c + 2b8ec7c commit 91b0387

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ $(TARGETS):
4646

4747
clean:
4848
@rm -rf out
49+
@rm -f sys-patch.zip
4950
@for i in $(TARGETS); do $(MAKE) -C $$i clean || exit 1; done;
5051

5152
dist: all

sysmod/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ else
180180
@rm -fr $(BUILD) $(TARGET).nsp $(TARGET).nso $(TARGET).npdm $(TARGET).elf
181181
endif
182182
@rm -rf out/
183-
@rm -f sys-patch.zip
183+
@rm -f sys-patch-sysmodule.zip
184184

185185
#---------------------------------------------------------------------------------
186186
dist: all
187187
@echo making dist ...
188188

189-
@rm -f sys-patch-no-overlay.zip
190-
@cd out; zip -r ../sys-patch-no-overlay.zip ./*; cd ../
189+
@rm -f sys-patch-sysmodule.zip
190+
@cd out; zip -r ../sys-patch-sysmodule.zip ./*; cd ../
191191
#---------------------------------------------------------------------------------
192192
else
193193
.PHONY: all

0 commit comments

Comments
 (0)