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.

52 lines
1.3 KiB

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