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