Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB

4 years ago
  1. # --------------------------------------------------------------------
  2. #
  3. # Microsoft RPC
  4. # Copyright(c) Microsoft Corp., 1990-94
  5. #
  6. # --------------------------------------------------------------------
  7. # --------------------------------------------------------------------
  8. #
  9. # File : makefile.
  10. #
  11. # Title : Makefile for the RPC locator client runtime.
  12. #
  13. # Description :
  14. # This makefile invokes make on subdirectories to actually build the
  15. # various runtimes.
  16. #
  17. # History :
  18. # mikemon ??-??-?? Beginning of recorded history.
  19. # mariogo 02-22-94 New build process
  20. # --------------------------------------------------------------------
  21. !IFDEF NTMAKEENV
  22. !INCLUDE $(NTMAKEENV)\makefile.def
  23. !ELSE
  24. !ifndef RPC
  25. !error - You forgot to set your build environment
  26. !endif
  27. ALL=1
  28. !include $(RPC)\rules.mk
  29. !if "$(TRG)" == "ALL"
  30. TARGETDIRS = $(CLIENT_SUBDIRS:MAC=)
  31. TARGETDIRS = $(TARGETDIRS:MPPC=)
  32. !else
  33. TARGETDIRS = $(TRG)
  34. !endif
  35. all :
  36. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) || exit ) && cd ..)
  37. clean :
  38. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clean || exit ) && cd ..)
  39. clobber :
  40. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clobber || exit ) && cd ..)
  41. depend :
  42. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) depend || exit ) && cd ..)
  43. tree :
  44. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) tree || exit ) && cd ..)
  45. !ENDIF