Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / iopcore / cdvdman / Makefile.hdd.hdpro
blob2742eff5755ded01d1ebf88376e56df974af0a80
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 += hdpro_atad.o
14 IOP_LIBS =
16 IOP_INCS +=
17 IOP_CFLAGS += -Wall -fno-builtin-printf
18 IOP_CFLAGS += -DHDD_DRIVER -DHD_PRO
19 ifeq ($(IOPCORE_DEBUG),1)
20 IOP_OBJS += dev9.o
21 IOP_CFLAGS += -D__IOPCORE_DEBUG
22 endif
23 ifeq ($(VMC),1)
24 IOP_CFLAGS += -DVMC_DRIVER
25 endif
26 IOP_LDFLAGS += -s
28 all: $(IOP_BIN)
30 clean:
31         rm -f $(IOP_BIN) $(IOP_OBJS)
33 rebuild: clean all
35 include $(PS2SDK)/Defs.make
36 include Rules.make