diff options
Diffstat (limited to 'private/rpc/runtime/rtifs/makefile')
-rw-r--r-- | private/rpc/runtime/rtifs/makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/private/rpc/runtime/rtifs/makefile b/private/rpc/runtime/rtifs/makefile new file mode 100644 index 000000000..1de9a949d --- /dev/null +++ b/private/rpc/runtime/rtifs/makefile @@ -0,0 +1,57 @@ +# -------------------------------------------------------------------- +# +# Microsoft RPC +# Copyright(c) Microsoft Corp., 1990-94 +# +# -------------------------------------------------------------------- +# -------------------------------------------------------------------- +# +# File : makefile. +# +# Title : Makefile for the RPC runtime interfaces (stubs) +# +# Description : +# This makefile invokes make on subdirectories to actually get some +# real work done. +# +# History : +# -------------------------------------------------------------------- + +!ifdef NTMAKEENV + +!include $(NTMAKEENV)\makefile.def + +!else # NTMAKEENV + +!ifndef RPC +!error - You forgot to set your build environment +!endif + +ALL=1 + +!include ..\rules.mk + +!if "$(TRG)" == "ALL" +TARGETDIRS = $(CLIENT_SUBDIRS) +!else +TARGETDIRS = $(TRG) +!endif + +all : + for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) || exit ) && cd ..) + +clean : + for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clean || exit ) && cd ..) + +clobber : + for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clobber || exit ) && cd ..) + +depend : + for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) depend || exit ) && cd ..) + +tree : + for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) tree || exit ) && cd ..) + + +!endif # NTMAKEENV + |