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