# # Create a Win32 application # # Things to know about: # # Don't put spaces around '=' in assignments as BUILD # will GP fault # # Don't use macros in here. BUILD can't cope # # MAJORCOMP=windows MINORCOMP=PlaySnd # Define the name and type of the application TARGETNAME=PlaySnd TARGETTYPE=PROGRAM UMTYPE=windows # Define where APP.EXE will go. TARGETPATH=..\obj # Define the path to search for include files # list each C and RC source file SOURCES=PlaySnd.c \ playsnd.rc \ init.c \ file.c \ sound.c \ res.c \ about.c \ help.c \ debug.c # List any libraries not included by WIN32LIBS in MAKEFILE.DEF TARGETLIBS=$(SDK_LIB_PATH)\winmm.lib \ $(SDK_LIB_PATH)\comdlg32.lib