Made makefile use python3 instead of python3.8

This commit is contained in:
Jack Garrard 2022-10-27 02:11:28 -07:00
parent 78b532a316
commit 000d24a7db

View file

@ -45,15 +45,15 @@ emu:
mv $(shell basename $(CURDIR))$(SMOVER).nso starlight_patch_$(SMOVER)/yuzu/subsdk1 mv $(shell basename $(CURDIR))$(SMOVER).nso starlight_patch_$(SMOVER)/yuzu/subsdk1
# builds and sends project to FTP server hosted on provided IP # builds and sends project to FTP server hosted on provided IP
send: all send: all
python3.8 scripts/sendPatch.py $(IP) $(PROJNAME) python3 scripts/sendPatch.py $(IP) $(PROJNAME)
log: all log: all
python3.8 scripts/tcpServer.py $(SERVERIP) python3 scripts/tcpServer.py $(SERVERIP)
sendlog: all sendlog: all
python3.8 scripts/sendPatch.py $(IP) $(PROJNAME) $(USER) $(PASS) python3 scripts/sendPatch.py $(IP) $(PROJNAME) $(USER) $(PASS)
python3.8 scripts/tcpServer.py $(SERVERIP) python3 scripts/tcpServer.py $(SERVERIP)
clean: clean:
$(MAKE) clean -f MakefileNSO $(MAKE) clean -f MakefileNSO
@rm -fr starlight_patch_* @rm -fr starlight_patch_*