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