2 CFLAGS=$(INCLUDES) -Zi -D_WIN32_WINNT=0x610
3 LIBS=rpcrt4.lib ws2_32.lib
8 del *~ *.obj *.exe midltests.h midltests_s.c midltests_c.c
10 MIDL_ARGS=/target NT60 /prefix client cli_ /prefix server srv_ /prefix switch swi_
11 midltests.h midltests_s.c midltests_c.c: midltests.idl midltests.acf
12 midl $(MIDL_ARGS) /acf midltests.acf midltests.idl
14 MIDLTESTS_OBJ = midltests_tcp.obj midltests_s.obj midltests_c.obj midltests_marshall.obj utils.obj
15 midltests_tcp.exe: $(MIDLTESTS_OBJ)
16 $(CC) -o midltests_tcp.exe $(MIDLTESTS_OBJ) $(LIBS)
18 midltests_tcp.obj: midltests.h midltests.idl
20 midltests_tcp.obj: midltests.h midltests.idl midltests_tcp.c
21 midltests_marshall.obj: midltests.h midltests_marshall.c
22 utils.obj: midltests.h utils.c