Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / usb / usbhdfsd / Makefile
blob0d434b60047468fe68cf79e8bb8123d4fee4d60f
1 # _____ ___ ____ ___ ____
2 # ____| | ____| | | |____|
3 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
4 #-----------------------------------------------------------------------
5 # Copyright 2001-2004, ps2dev - http://www.ps2dev.org
6 # Licenced under Academic Free License version 2.0
7 # Review ps2sdk README & LICENSE files for further details.
9 # $Id: $
11 IOP_BIN = usbhdfsd.irx
12 IOP_OBJS = usb_driver.o fs_driver.o part_driver.o fat_driver.o scache.o usbhdfsd.o imports.o
13 IOP_LIBS =
15 IOP_INCS +=
16 IOP_CFLAGS += -Wall -fno-builtin-printf
17 IOP_LDFLAGS += -s
19 WRITE_SUPPORT=1
21 ifeq ($(WRITE_SUPPORT),1)
22 IOP_CFLAGS += -DWRITE_SUPPORT
23 IOP_OBJS += fat_write.o
24 endif
26 all: $(IOP_BIN)
28 clean:
29 rm -f $(IOP_BIN) $(IOP_OBJS)
31 rebuild: clean all
33 run:
34 ps2client -t 1 execiop host:$(IOP_BIN)
37 include $(PS2SDK)/Defs.make
38 include Rules.make