source: trunk/server/testprogs/win32/midltests/Makefile.tcp

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 787 bytes
Line 
1INCLUDES=-I
2CFLAGS=$(INCLUDES) -Zi -D_WIN32_WINNT=0x610
3LIBS=rpcrt4.lib ws2_32.lib
4
5all: midltests_tcp.exe
6
7clean:
8 del *~ *.obj *.exe midltests.h midltests_s.c midltests_c.c
9
10MIDL_ARGS=/target NT60 /prefix client cli_ /prefix server srv_ /prefix switch swi_
11midltests.h midltests_s.c midltests_c.c: midltests.idl midltests.acf
12 midl $(MIDL_ARGS) /acf midltests.acf midltests.idl
13
14MIDLTESTS_OBJ = midltests_tcp.obj midltests_s.obj midltests_c.obj midltests_marshall.obj utils.obj
15midltests_tcp.exe: $(MIDLTESTS_OBJ)
16 $(CC) -o midltests_tcp.exe $(MIDLTESTS_OBJ) $(LIBS)
17
18midltests_tcp.obj: midltests.h midltests.idl
19
20midltests_tcp.obj: midltests.h midltests.idl midltests_tcp.c
21midltests_marshall.obj: midltests.h midltests_marshall.c
22utils.obj: midltests.h utils.c
Note: See TracBrowser for help on using the repository browser.