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.

53 lines
1.0 KiB

  1. #//----------------------------------------------------------------------------
  2. #// Build the stub control panel
  3. #//----------------------------------------------------------------------------
  4. !ifdef NTMAKEENV
  5. #
  6. # Build using BUILD.EXE (Do not edit this section of this file, edit SOURCES)
  7. #
  8. !INCLUDE $(NTMAKEENV)\makefile.def
  9. !else # NTMAKEENV
  10. NAME=control
  11. ROOT=..\..\..\..
  12. RES_DIR=..
  13. # // The 16bit version will be smaller and faster.
  14. # // WIN32=TRUE
  15. # // DEFENTRY = ModuleEntry@0
  16. !ifdef VERDIR
  17. ROOT=..\$(ROOT)
  18. !endif
  19. PCHOBJ0=init.obj
  20. !ifdef WIN32
  21. !if "$(VERDIR)" == "debug"
  22. #// Debug needs comctl32 only for DebugMsg()
  23. LIB0=kernel32.lib user32.lib comctl32.lib
  24. !else
  25. LIB0=kernel32.lib user32.lib
  26. !endif
  27. !else
  28. !if "$(VERDIR)" == "debug"
  29. #// Debug needs commctrl only for DebugMsg()
  30. LIB0=libw mnocrtw commctrl
  31. !else
  32. LIB0=libw mnocrtw
  33. !endif
  34. !endif
  35. !include $(ROOT)\win\core\shell\common.mk
  36. !ifdef VERDIR
  37. $(PRIVINC).pch pch.obj: $(ROOT)\dev\inc16\shell.h
  38. $(NAME).res: $(SRCDIR)\$(NAME).ico
  39. !endif
  40. !endif # NTMAKEENV