mirror of
https://github.com/PCSX2/HardwareTests.git
synced 2026-01-31 01:15:17 +01:00
26 lines
459 B
Makefile
Executable File
26 lines
459 B
Makefile
Executable File
EE_BIN= texamerge.elf
|
|
EE_OBJS = texamerge.o
|
|
EE_LIBS = -ldraw -ldma -lgraph
|
|
EE_CFLAGS = -Wall -O3
|
|
|
|
all: $(EE_BIN)
|
|
|
|
clean:
|
|
rm -f $(EE_OBJS) $(EE_BIN)
|
|
|
|
run: $(EE_BIN)
|
|
ps2client execee host:$(EE_BIN)
|
|
|
|
wsl: $(EE_BIN)
|
|
$(PCSX2) -elf "$(shell wslpath -w $(shell pwd))/$(EE_BIN)"
|
|
|
|
emu: $(EE_BIN)
|
|
$(PCSX2) -elf "$(shell pwd)/$(EE_BIN)"
|
|
|
|
reset:
|
|
ps2client reset
|
|
ps2client netdump
|
|
|
|
include $(PS2SDK)/samples/Makefile.pref
|
|
include $(PS2SDK)/samples/Makefile.eeglobal
|