Leaked source code of windows server 2003
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. # Copyright (C) 1996-1999, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. ##
  9. ## Special MakeFile instructions for the IProp Setup
  10. ## (PrpSetup) utility
  11. ##
  12. ## This makefile compiles the resources. Ordinarily,
  13. ## you cause the resources to be compiled by including
  14. ## the .rc file in your SOURCES macro. This, however,
  15. ## compiles the .rc file during pass 1. But our .rc
  16. ## file uses iprop.dll, which doesn't exist until pass 2.
  17. ## So, we don't include the .rc file in SOURCES, and
  18. ## we add all the necessary rules for building it here.
  19. ##
  20. #
  21. # Make sure we're not here on passes 0/1
  22. #
  23. !IF "$(NOLINK)" != ""
  24. !ERROR *** PrpSetup makefile.inc included in pass 0/1
  25. !ENDIF
  26. #
  27. # Make the exe file dependent on the res file.
  28. #
  29. $(TARGET) : $O\prpsetup.res
  30. #
  31. # Show how what resources need to be compiled.
  32. #
  33. $O\prpsetup.res : .\prpsetup.rc
  34. # Show that the RC file should be re-compiled if the compressed
  35. # DLL is updated.
  36. prpsetup.rc : iprop.dl_
  37. # Show how to build the compressed IProp DLL file
  38. iprop.dl_ : $(_NTTREE)\iprop.dll
  39. @echo Compressing - $** to $@ > con:
  40. compress $** $@