mirror of https://github.com/PCSX2/pcsx2.git
20 lines
543 B
Makefile
20 lines
543 B
Makefile
# _____ ___ ____
|
|
# ____| | ____| PSX2 OpenSource Project
|
|
# | ___| |____ (C)2002, David Ryan ( Oobles@hotmail.com )
|
|
# ------------------------------------------------------------------------
|
|
|
|
IOP_BIN = ../../../build/HEAPLIB
|
|
|
|
IOP_INCS += -I../include
|
|
|
|
IOP_OBJS = heaplib.o ../iopdebug.o ../libkernel/iop_loadcore.o ../libkernel/iop_sysmem.o
|
|
|
|
all: $(IOP_BIN)
|
|
|
|
clean:
|
|
rm -f -r $(IOP_OBJS) $(IOP_BIN)
|
|
|
|
include $(PS2SDK)/Defs.make
|
|
include $(PS2SDK)/samples/Makefile.pref
|
|
include $(PS2SDK)/samples/Makefile.iopglobal
|