From 2753ad4127b7da8f31e0bd6459d8bd79859e733d Mon Sep 17 00:00:00 2001 From: Maximus32 Date: Thu, 10 Dec 2020 20:24:29 +0100 Subject: [PATCH] Makefile: use packed bin for run/sim targets --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a11cb4567..ebd4b13e7 100644 --- a/Makefile +++ b/Makefile @@ -307,11 +307,11 @@ clean: rebuild: clean all -run: $(EE_BIN) - ps2client -h 192.168.1.10 execee host:$(EE_BIN) +run: $(EE_BIN_PACKED) + ps2client -h 192.168.1.10 execee host:$< -sim: $(EE_BIN) - PCSX2 --elf=$(PWD)/$(EE_BIN) --nodisc --nogui +sim: $(EE_BIN_PACKED) + PCSX2 --elf=$(PWD)/$< --nodisc --nogui pc_tools: echo "Building iso2opl, opl2iso and genvmc..."