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.

55 lines
1.4 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 runtime.
  12. #
  13. # Description :
  14. # This makefile invokes make on subdirectories to actually get some
  15. # real work done.
  16. #
  17. # History :
  18. # brucemc 05-21-92 added C7 support and cleaned up.
  19. # --------------------------------------------------------------------
  20. !ifdef NTMAKEENV
  21. all :
  22. echo $(BUILDMSG)
  23. clean : all
  24. !else # NTMAKEENV
  25. !ifndef RPC
  26. !error - You forgot to set your build environment
  27. !endif
  28. ALL=1
  29. !include ..\rules.mk
  30. TARGETDIRS = client
  31. all :
  32. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) || exit ) && cd ..)
  33. clean :
  34. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clean || exit ) && cd ..)
  35. clobber :
  36. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) clobber || exit ) && cd ..)
  37. depend :
  38. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) depend || exit ) && cd ..)
  39. tree :
  40. for %%i in ($(TARGETDIRS)) do (cd %%i && ($(MAKE) -$(MAKEFLAGS) $(NMAKE_FLAGS) tree || exit ) && cd ..)
  41. !endif # NTMAKEENV