fix for corrupted graphics when manipulating config files
[open-ps2-loader.git] / modules / network / SMSTCPIP / Makefile
blob99bae47a655722896b9e4a704015f04f4fe30215
1 IOP_BIN = SMSTCPIP.irx
2 IOP_OBJS = ps2ip.o inet.o ip.o ip_addr.o ip_frag.o etharp.o tcp_in.o tcp_out.o \
3 tcp.o tcpip.o mem.o api_lib.o api_msg.o sockets.o netif.o udp.o memp.o \
4 icmp.o pbuf.o exports.o imports.o
5 IOP_LIBS =
7 IOP_INCS += -Iinclude
8 IOP_CFLAGS += -DLWIP_NOASSERT -Wall -fno-builtin-printf
9 IOP_ASFLAGS +=
10 IOP_LDFLAGS += -s
12 ifeq ($(INGAME_DRIVER),1)
13 IOP_CFLAGS += -DINGAME_DRIVER
14 endif
16 all: $(IOP_BIN)
18 clean:
19 rm -f $(IOP_BIN) $(IOP_OBJS)
21 rebuild: clean all
23 run:
24 ps2client -t 1 execiop host:$(IOP_BIN)
27 include $(PS2SDK)/Defs.make
28 include Rules.make