30 lines
488 B
Plaintext
30 lines
488 B
Plaintext
#
|
|
# Create a Win32 application
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=sbtest
|
|
|
|
# Define the name and type of the application
|
|
|
|
TARGETNAME=mci
|
|
TARGETTYPE=PROGRAM
|
|
UMTYPE=console
|
|
|
|
# Define where APP.EXE will go.
|
|
|
|
TARGETPATH=..\obj
|
|
|
|
# Define the path to search for include files
|
|
|
|
INCLUDES=..\..\mcicda;..\..\inc
|
|
|
|
# list each C and RC source file
|
|
|
|
SOURCES=mci.c
|
|
|
|
# List any libraries not included by WIN32LIBS in MAKEFILE.DEF
|
|
|
|
TARGETLIBS=$(SDK_LIB_PATH)\winmm.lib \
|
|
$(PROJECT_LIB_PATH)\mcicda.lib
|