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.
85 lines
2.6 KiB
85 lines
2.6 KiB
#
|
|
# Setup environment that are common for all CM components
|
|
#
|
|
CM_ROOT=$(PROJECT_ROOT)\rras\cm
|
|
!include $(CM_ROOT)\sources.inc
|
|
|
|
#
|
|
# The MAJORCOMP and MINORCOMP variables are defined
|
|
# so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
|
|
# cross compiling to provide unique filenames in a flat namespace.
|
|
#
|
|
MAJORCOMP=cm
|
|
MINORCOMP=pbasetup
|
|
|
|
#
|
|
# 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=pbasetup
|
|
|
|
#
|
|
# The TARGETPATH and TARGETTYPE varialbes 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=$(CM_BUILD_ROOT)
|
|
TARGETTYPE=PROGRAM
|
|
|
|
#
|
|
# The INCLUDES variable specifies any include paths that are specific to
|
|
# this source directory. Separate multiple directory paths with single
|
|
# semicolons. Relative path specifications are okay.
|
|
#
|
|
INCLUDES=$(INCLUDES)
|
|
|
|
#
|
|
# Consult build.hlp for the following. Generally, these
|
|
# should be left alone.
|
|
#
|
|
#C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE -DMPR50
|
|
#MSC_WARNING_LEVEL=/W3 /WX
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=pbamaster.h
|
|
#PRECOMPILED_OPTION=/Yu /Fp$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch.pch
|
|
#PRECOMPILED_TARGET=$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch.pch
|
|
#PRECOMPILED_OBJ=$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch.obj
|
|
#RCOPTIONS=-N
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
USE_LIBCMT=1
|
|
|
|
BINPLACE_PLACEFILE=placefil.txt
|
|
|
|
#
|
|
# If you wish to generate assembly listings, uncomment the following line.
|
|
#
|
|
#USER_C_FLAGS=/Fa
|
|
|
|
TARGETLIBS= \
|
|
$(CM_BUILD_ROOT)\*\cmdebug.lib \
|
|
$(CM_BUILD_ROOT)\*\cmsetup.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\gdi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\version.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advpack.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib \
|
|
|
|
#
|
|
# The SOURCES variable is defined by the developer. It is a list of all the
|
|
# source files for this component. Each source file should be on a separate
|
|
# line using the line continuation character. This will minimize merge
|
|
# conflicts if two developers adding source files to the same component.
|
|
#
|
|
# Whitespace is not permitted between the SOURCES keyword and the '='.
|
|
# (Courtesy of BUILD.EXE)
|
|
#
|
|
|
|
SOURCES=\
|
|
pbasetup.rc \
|
|
pbasetup.cpp \
|
|
mutexclass.cpp
|
|
|