2. Committed only its source, you will need to do a make inside its folder before being able to compile our beloved PlayStation2 backend. Enjoy, -max svn-id: r33115
30 lines
809 B
Makefile
30 lines
809 B
Makefile
# _____ ___ ____ ___ ____
|
|
# ____| | ____| | | |____|
|
|
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
|
|
# Licenced under Academic Free License version 2.0
|
|
# Review ps2sdk README & LICENSE files for further details.
|
|
#
|
|
# $Id$
|
|
|
|
|
|
IOP_OBJS_DIR = obj/
|
|
IOP_BIN_DIR = bin/
|
|
IOP_SRC_DIR = src/
|
|
IOP_INC_DIR = include/
|
|
|
|
IOP_BIN=bin/rpckbd.irx
|
|
IOP_OBJS=obj/ps2kbd.o obj/imports.o
|
|
|
|
IOP_CFLAGS=-Wall
|
|
IOP_INCS += -I$(PS2SDKSRC)/iop/usb/usbd/include
|
|
|
|
all: $(IOP_OBJS_DIR) $(IOP_BIN_DIR) $(IOP_BIN)
|
|
|
|
clean:
|
|
rm -f -r $(IOP_OBJS_DIR) $(IOP_BIN_DIR)
|
|
|
|
include $(PS2SDKSRC)/Defs.make
|
|
include $(PS2SDKSRC)/iop/Rules.make
|
|
include $(PS2SDKSRC)/iop/Rules.release
|