|
|
Microsoft Windows NT Build 297 06-28-1992
#*************************************************************#
#** **#
#** Microsoft RPC Examples **#
#** xmit Application **#
#** Copyright(c) Microsoft Corp. 1992 **#
#** **#
#*************************************************************#
!INCLUDE ..\..\makefile.dos
all : xmitc
cc= cl
cflags= -c -AL -Gsw -Oas -Zpe -Zi -I$(OSINCLUDE)
linker= link
lflags= /CO /NOD
# Make the client side application xmitc
xmitc : xmitc.exe
xmitc.exe : xmitc.obj xmit_c.obj xmit_x.obj
$(linker) $(lflags) xmitc xmit_c xmit_x,,,\
oldnames llibce rpc rpcndr;
# Update the object files if necessary
xmitc.obj: xmitc.c xmit.h
$(cc) $(cflags) $(cvars) xmitc.c
xmit_c.obj : xmit_c.c xmit.h
$(cc) $(cflags) $(cvars) -W1 xmit_c.c
xmit_x.obj : xmit_x.c xmit.h
$(cc) $(cflags) $(cvars) -W1 xmit_x.c
xmit.h xmit_c.c xmit_x.c : xmit.idl xmit.acf
midl xmit.idl -cpp_cmd $(cc) -cpp_opt "-E"
# Clean up everything
cleanall : clean
-del xmitc.exe
# Clean up everything but the .EXEs
clean :
-del *.obj
-del *.map
-del xmit_c.c
-del xmit_x.c
-del xmit_s.c
-del xmit_y.c
-del xmit.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.