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 | |
---|
1 | INCLUDES=-I
|
---|
2 | CFLAGS=$(INCLUDES) -Zi -D_WIN32_WINNT=0x610
|
---|
3 | LIBS=rpcrt4.lib ws2_32.lib
|
---|
4 |
|
---|
5 | all: midltests_tcp.exe
|
---|
6 |
|
---|
7 | clean:
|
---|
8 | del *~ *.obj *.exe midltests.h midltests_s.c midltests_c.c
|
---|
9 |
|
---|
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
|
---|
13 |
|
---|
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)
|
---|
17 |
|
---|
18 | midltests_tcp.obj: midltests.h midltests.idl
|
---|
19 |
|
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.