|
|
1.1 root 1: #*************************************************************#
2: #** **#
3: #** Microsoft RPC Examples **#
4: #** xmit Application **#
5: #** Copyright(c) Microsoft Corp. 1992 **#
6: #** **#
7: #*************************************************************#
8: !INCLUDE ..\..\makefile.dos
9:
10: all : xmitc
11:
12: cc= cl
13: cflags= -c -AL -Gsw -Oas -Zpe -Zi -I$(OSINCLUDE)
14: linker= link
15: lflags= /CO /NOD
16:
17: # Make the client side application xmitc
18: xmitc : xmitc.exe
19: xmitc.exe : xmitc.obj xmit_c.obj xmit_x.obj
20: $(linker) $(lflags) xmitc xmit_c xmit_x,,,\
21: oldnames llibce rpc rpcndr;
22:
23: # Update the object files if necessary
24:
25: xmitc.obj: xmitc.c xmit.h
26: $(cc) $(cflags) $(cvars) xmitc.c
27:
28: xmit_c.obj : xmit_c.c xmit.h
29: $(cc) $(cflags) $(cvars) -W1 xmit_c.c
30:
31: xmit_x.obj : xmit_x.c xmit.h
32: $(cc) $(cflags) $(cvars) -W1 xmit_x.c
33:
34: xmit.h xmit_c.c xmit_x.c : xmit.idl xmit.acf
35: midl xmit.idl -cpp_cmd $(cc) -cpp_opt "-E"
36:
37: # Clean up everything
38: cleanall : clean
39: -del xmitc.exe
40:
41: # Clean up everything but the .EXEs
42: clean :
43: -del *.obj
44: -del *.map
45: -del xmit_c.c
46: -del xmit_x.c
47: -del xmit_s.c
48: -del xmit_y.c
49: -del xmit.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.