mirror of https://github.com/tongzx/nt5src
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
45 lines
832 B
#
|
|
# 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
|
|
|