#
#   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

INCLUDES=\nt\public\sdk\inc;\nt\public\sdk\inc\crt

# 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=\nt\public\sdk\lib\*\winmm.lib \
           \nt\public\sdk\lib\*\comdlg32.lib

