mirror of https://github.com/PCSX2/pcsx2.git
20 lines
559 B
Makefile
20 lines
559 B
Makefile
# _____ ___ ____
|
|
# ____| | ____| PSX2 OpenSource Project
|
|
# | ___| |____ (C)2002, David Ryan ( Oobles@hotmail.com )
|
|
# ------------------------------------------------------------------------
|
|
|
|
IOP_BIN = ../../../build/INTRMAN
|
|
|
|
IOP_INCS += -I../include
|
|
|
|
IOP_OBJS = int_handler.o intrman.o ../iopdebug.o ../libkernel/iop_loadcore.o ../libkernel/iop_excepman.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
|