コンパイルとリンク
次のメイクファイルは、クライアント アプリケーションとサーバー アプリケーションをコンパイルし、RPC ランタイム ライブラリと標準 C ランタイム ライブラリにリンクするために必要なファイル間の依存関係を示しています。
このメイクファイルを使用して、このチュートリアルのソース コードからクライアント アプリケーションとサーバー アプリケーションをビルドできます。 ここに示されているスタブとヘッダーは、MIDL バージョン 2.0 で生成されました。 コンパイラとリンカーのコマンドと引数は、コンピューターの構成によって異なる場合があります。 詳細については、コンパイラのドキュメントを参照してください。
#makefile for helloc.exe and hellos.exe
#link refers to the linker
#conflags refers to flags for console applications
#conlibs refers to libraries for console applications
!include <ntwin32.mak>
all : helloc hellos
# Make the client side application helloc
helloc : helloc.exe
helloc.exe : helloc.obj hello_c.obj
$(link) $(linkdebug) $(conflags) -out:helloc.exe \
helloc.obj hello_c.obj \
rpcrt4.lib $(conlibs)
# helloc main program
helloc.obj : helloc.c hello.h
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
# helloc stub
hello_c.obj : hello_c.c hello.h
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
# Make the server side application
hellos : hellos.exe
hellos.exe : hellos.obj hellop.obj hello_s.obj
$(link) $(linkdebug) $(conflags) -out:hellos.exe \
hellos.obj hello_s.obj hellop.obj \
rpcrt4.lib $(conlibsmt)
# hello server main program
hellos.obj : hellos.c hello.h
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
# remote procedures
hellop.obj : hellop.c hello.h
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
# hellos stub file
hello_s.obj : hello_s.c hello.h
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
# Stubs and header file from the IDL file
hello.h hello_c.c hello_s.c : hello.idl hello.acf
midl hello.idl