Files
2023-01-29 01:14:51 -05:00

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