Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / iopcore / cdvdman / Makefile.usb.4Ksectors
blob7946899bff808b11efdee0dd3d57b3b4ff684d83
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  = cdvdman.irx
12 IOP_OBJS = cdvdman.o ioplib_util.o smsutils.o imports.o exports.o
13 IOP_OBJS += mass_driver.o
14 ifeq ($(USE_DEV9),1)
15 IOP_OBJS += dev9.o
16 else
17 ifeq ($(IOPCORE_DEBUG),1)
18 IOP_OBJS += dev9.o
19 endif
20 endif
21 IOP_LIBS =
23 IOP_INCS +=
24 IOP_CFLAGS += -Wall -fno-builtin-printf
25 IOP_CFLAGS += -DUSB_DRIVER -D_4K_SECTORS
26 ifeq ($(USE_DEV9),1)
27 IOP_CFLAGS += -D__USE_DEV9
28 else
29 ifeq ($(IOPCORE_DEBUG),1)
30 IOP_CFLAGS += -D__USE_DEV9 -D__IOPCORE_DEBUG
31 endif
32 endif
33 ifeq ($(VMC),1)
34 IOP_CFLAGS += -DVMC_DRIVER
35 endif
36 IOP_LDFLAGS += -s
38 all: $(IOP_BIN)
40 clean:
41         rm -f $(IOP_BIN) $(IOP_OBJS)
43 rebuild: clean all
45 include $(PS2SDK)/Defs.make
46 include Rules.make