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.

45 lines
832 B

  1. #
  2. # Create a Win32 application
  3. #
  4. # Things to know about:
  5. #
  6. # Don't put spaces around '=' in assignments as BUILD
  7. # will GP fault
  8. #
  9. # Don't use macros in here. BUILD can't cope
  10. #
  11. #
  12. MAJORCOMP=windows
  13. MINORCOMP=PlaySnd
  14. # Define the name and type of the application
  15. TARGETNAME=PlaySnd
  16. TARGETTYPE=PROGRAM
  17. UMTYPE=windows
  18. # Define where APP.EXE will go.
  19. TARGETPATH=..\obj
  20. # Define the path to search for include files
  21. # list each C and RC source file
  22. SOURCES=PlaySnd.c \
  23. playsnd.rc \
  24. init.c \
  25. file.c \
  26. sound.c \
  27. res.c \
  28. about.c \
  29. help.c \
  30. debug.c
  31. # List any libraries not included by WIN32LIBS in MAKEFILE.DEF
  32. TARGETLIBS=$(SDK_LIB_PATH)\winmm.lib \
  33. $(SDK_LIB_PATH)\comdlg32.lib