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.

62 lines
1004 B

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Steve Wood (stevewo) 12-Apr-1990
  12. NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
  13. !ENDIF
  14. !ifndef U_UNICODE
  15. U_UNICODE=1
  16. !endif
  17. !ifndef D_DEBUG
  18. D_DEBUG=0
  19. !endif
  20. !if $(U_UNICODE)
  21. !if $(D_DEBUG)
  22. C_DEFINES=-DUNICODE=1 -D_UNICODE=1 -DDEBUG_OUT=1
  23. !else
  24. C_DEFINES=-DUNICODE=1 -D_UNICODE=1 -DDEBUG_OUT=0
  25. !endif
  26. !else
  27. !if $(D_DEBUG)
  28. C_DEFINES=-DDEBUG_OUT=1
  29. !else
  30. C_DEFINES=-DDEBUG_OUT=0
  31. !endif
  32. !endif
  33. GPSIZE=32
  34. TARGETNAME=putingrp
  35. TARGETPATH=obj
  36. TARGETTYPE=LIBRARY
  37. INCLUDES=
  38. SOURCES=putingrp.c \
  39. putingrp.rc
  40. UMTYPE=console
  41. UMAPPL=putingrp
  42. UMLIBS=obj\*\putingrp.lib \
  43. obj\*\putingrp.res \
  44. $(SDK_LIB_PATH)\user32.lib
  45.