#
#   Create a Win32 application
#
MAJORCOMP=media
MINORCOMP=cdplayer

#
# Debug settings
#
# NTDEBUG=ntsd
# NTDEBUGTYPE=windbg
# MSC_OPTIMIZATION=-Od
NTKEEPRESOURCETMPFILES=yes

#
# Define the name and type of the application
#
TARGETNAME=cdplayer
TARGETTYPE=PROGRAM
UMTYPE=windows
UMENTRY=winmain
UMLIBS=

#
# Define where APP.EXE will go.
#
TARGETPATH=.\obj

#
# Define the path to search for include files
#
INCLUDES=..\inc


#
# C Run and compile time information
#
!ifdef CHICAGO_PRODUCT
C_DEFINES=-DSTRICT
!else
C_DEFINES=-DUNICODE -D_UNICODE
!endif
USE_CRTDLL=1


#
# list each C and RC source file
#
SOURCES=cdplayer.c cdapi.c ledwnd.c scan.c database.c  \
trklst.c commands.c diskinfo.c dragdrop.c buttons.c cdapimci.c \
cdplayer.rc


#
# List any libraries not included by WIN32LIBS in MAKEFILE.DEF
#
!ifdef CHICAGO_PRODUCT
TARGETLIBS=$(BASEDIR)\public\sdk\lib\chicago\*\shell32.lib \
           $(BASEDIR)\public\sdk\lib\chicago\*\comctl32.lib \
           $(BASEDIR)\public\sdk\lib\*\winmm.lib
!else
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\shell32.lib \
           $(BASEDIR)\public\sdk\lib\*\winmm.lib
!endif
