# # The TARGETNAME variable is defined by the developer. It is the name of # the target (component) that is being built by this makefile. It # should NOT include any path or file extension information. # TARGETNAME=ChimeSvc # # The TARGETPATH and TARGETTYPE variables are defined by the developer. # The first specifies where the target is to be build. The second specifies # the type of target (either PROGRAM, DYNLINK or LIBRARY) # TARGETPATH=obj TARGETTYPE=PROGRAM UMTYPE=windows #UMENTRY=wWinMainCRTStartup UMENTRYABS=wWinMainCRTStartup USE_CRTDLL=1 USE_STATIC_ATL=1 ATL_VER=30 USE_STL=1 USE_RTTI=1 USE_VCCOM=1 INCLUDES=.;\ ..\..\idl; \ $(PROJDIR)\inc; \ $(BASEDIR)\private\inc; \ $(BASEDIR)\public\sdk\inc\atl30;\ $(BASEDIR)\public\sdk\inc \ TARGETLIBS=\ $(BASEDIR)\public\sdk\lib\*\advapi32.lib \ $(BASEDIR)\public\sdk\lib\*\kernel32.lib \ $(BASEDIR)\public\sdk\lib\*\wsock32.lib \ $(BASEDIR)\public\sdk\lib\*\user32.lib \ $(BASEDIR)\public\sdk\lib\*\ntdll.lib \ $(BASEDIR)\public\sdk\lib\*\ole32.lib \ $(BASEDIR)\public\sdk\lib\*\oleaut32.lib \ C_DEFINES=$(C_DEFINES) $(USER_DEFINES) -DUNICODE SOURCES = \ chimesvc.cpp \ chimesvc.rc WARNING_LEVEL=/W4 /WX BINPLACE_PLACEFILE = placefil.txt MISCFILES = \ chimesvc.cpp \ chimesvc.dsp \ chimesvc.h \ chimesvc.mk \ chimesvc.rc \ makefile \ sources