33 lines
572 B
Plaintext
33 lines
572 B
Plaintext
#
|
|
# Create a Win32 application
|
|
#
|
|
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=MciTest
|
|
|
|
TARGETNAME=MciTest
|
|
TARGETTYPE=PROGRAM
|
|
UMTYPE=windows
|
|
|
|
# Define where APP.EXE will go.
|
|
|
|
TARGETPATH=..\obj
|
|
|
|
# Define the path to search for include files
|
|
|
|
INCLUDES=$(BASEDIR)\private\windows\media\inc
|
|
|
|
# list each C and RC source file
|
|
|
|
SOURCES=mcitest.c \
|
|
mcitest.rc \
|
|
edit.c \
|
|
fileopen.c \
|
|
debug.c
|
|
|
|
# List any libraries not included by WIN32LIBS in MAKEFILE.DEF
|
|
|
|
TARGETLIBS=$(SDK_LIB_PATH)\winmm.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib
|