mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / modules / mcemu / Makefile.usb
blobd14a651addd7de43e4ecc3260dbfee2a5deeb36f
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: Makefile 1 2007-05-08 16:56:27Z polo $
11 IOP_BIN  = mcemu.irx
12 IOP_OBJS = mcemu.o mcemu_io.o mcemu_sys.o mcemu_var.o mcemu_rpc.o imports.o
14 ifeq ($(IOPCORE_DEBUG),1)
15 IOP_CFLAGS += -DDEBUG
16 endif
18 IOP_CFLAGS  += -Wall -fno-builtin
19 IOP_CFLAGS += -DUSB_DRIVER
20 IOP_LDFLAGS += -s
21 IOP_INCS += -I$(PS2SDK)/iop/include -I$(PS2SDK)/common/include
23 all: $(IOP_BIN)
25 rebuild: clean all
27 clean:
28         -rm -f *.o *.bak *.irx
30 include $(PS2SDK)/Defs.make
31 include Rules.make