Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / vmc / mcman / Makefile
blob795a64f8eb81ee310205b7b5fb47d3fcb861de89
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 = mcman.irx
12 IOP_OBJS = main.o mcdev.o mcsio2.o ps2mc_io.o ps1mc_io.o imports.o exports.o
14 ifeq ($(DEBUG),1)
15 DEBUG_FLAGS = -DDEBUG
16 endif
18 ifeq ($(SIO_DEBUG),1)
19 DEBUG_FLAGS = -DSIO_DEBUG
20 endif
22 IOP_INCS += -I$(PS2SDK)/iop/include
23 IOP_CFLAGS += -Wall -fno-builtin $(DEBUG_FLAGS)
24 IOP_LDFLAGS += -s
26 all: $(IOP_BIN)
28 clean:
29 -rm -f *.o *.irx
31 include $(PS2SDK)/Defs.make
32 include Rules.make