|
|
1.1 root 1: #*************************************************************#
2: #** **#
3: #** Microsoft RPC Examples **#
4: #** cxhndl Application **#
5: #** Copyright(c) Microsoft Corp. 1992 **#
6: #** **#
7: #*************************************************************#
8: !INCLUDE ..\..\makefile.dos
9:
10: all : cxhndlc
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 cxhndlc
18: cxhndlc : cxhndlc.exe
19: cxhndlc.exe : cxhndlc.obj cxhndl_c.obj cxhndl_x.obj
20: $(linker) $(lflags) cxhndlc cxhndl_c cxhndl_x,,,\
21: oldnames llibce rpc rpcndr;
22:
23: # Update the object files if necessary
24:
25: cxhndlc.obj: cxhndlc.c cxhndl.h
26: $(cc) $(cflags) $(cvars) cxhndlc.c
27:
28: cxhndl_c.obj : cxhndl_c.c cxhndl.h
29: $(cc) $(cflags) $(cvars) -W1 cxhndl_c.c
30:
31: cxhndl_x.obj : cxhndl_x.c cxhndl.h
32: $(cc) $(cflags) $(cvars) -W1 cxhndl_x.c
33:
34: cxhndl.h cxhndl_c.c cxhndl_x.c : cxhndl.idl cxhndl.acf
35: midl cxhndl.idl -cpp_cmd $(cc) -cpp_opt "-E"
36:
37: # Clean up everything
38: cleanall : clean
39: -del cxhndlc.exe
40:
41: # Clean up everything but the .EXEs
42: clean :
43: -del *.obj
44: -del *.map
45: -del cxhndl_c.c
46: -del cxhndl_x.c
47: -del cxhndl_s.c
48: -del cxhndl_y.c
49: -del cxhndl.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.