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