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.

64 lines
1.7 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 svrcomn
  12. #
  13. # Description :
  14. # This makefile invokes make on subdirectories to actually build the
  15. # various runtimes; or, in the case of NT, we go ahead and just build the
  16. # runtime right here.
  17. #
  18. # History :
  19. # mikemon ??-??-?? Beginning of recorded history.
  20. #
  21. # --------------------------------------------------------------------
  22. !IFDEF NTMAKEENV
  23. #
  24. # DO NOT EDIT THIS LINE!!! Edit .\sources. if you want to add a new source
  25. # file to this component. This file merely indirects to the real make file
  26. # that is shared by all the components of NT OS/2
  27. #
  28. !INCLUDE $(NTMAKEENV)\makefile.def
  29. !ELSE
  30. ALL=1
  31. !include rules.mk
  32. !ifndef RPC
  33. !error - You forgot to set your build environment
  34. !endif
  35. !if "$(TRG)" == "ALL"
  36. TARGETDIRS = $(CLIENT_SUBDIRS)
  37. !else
  38. TARGETDIRS = $(TRG)
  39. !endif
  40. all :
  41. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) || exit ) && cd ..)
  42. clean :
  43. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clean || exit ) && cd ..)
  44. clobber :
  45. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clobber || exit ) && cd ..)
  46. depend :
  47. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) depend || exit ) && cd ..)
  48. tree :
  49. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) tree || exit ) && cd ..)
  50. !ENDIF