Source code of Windows XP (NT5)
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.

51 lines
1.3 KiB

  1. # --------------------------------------------------------------------
  2. #
  3. # Microsoft RPC
  4. # Copyright(c) Microsoft Corp., 1992-94
  5. #
  6. # --------------------------------------------------------------------
  7. # --------------------------------------------------------------------
  8. #
  9. # File : makefile.
  10. #
  11. # Title : Makefile for perf\rpcrt
  12. #
  13. # History :
  14. #
  15. # --------------------------------------------------------------------
  16. !ifdef NTMAKEENV
  17. !INCLUDE $(NTMAKEENV)\makefile.def
  18. !else # NTMAKEENV
  19. !ifndef RPC
  20. !error - You forgot to set your build environment
  21. !endif
  22. ALL=1
  23. !include ..\rules.mk
  24. TARGETDIRS = client
  25. ###########################################################################
  26. all :
  27. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) || exit) && cd ..)
  28. clean :
  29. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clean || exit ) && cd ..)
  30. clobber :
  31. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clobber || exit ) && cd ..)
  32. depend :
  33. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) depend || exit ) && cd ..)
  34. tree :
  35. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) tree || exit ) && cd ..)
  36. !endif # NTMAKEENV