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.
53 lines
1.6 KiB
53 lines
1.6 KiB
# 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=sauuid
|
|
|
|
#
|
|
# 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=$(SASS_LIB_TARGETPATH)
|
|
TARGETTYPE=LIBRARY
|
|
|
|
#
|
|
# 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=\
|
|
|
|
#
|
|
# Compile for UNICODE
|
|
#
|
|
C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE
|
|
|
|
#
|
|
# 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=\
|
|
appsrvcs_i.c \
|
|
elementmgr_i.c \
|
|
salangchange_i.c \
|
|
salocmgr_i.c \
|
|
servicesurrogate_i.c \
|
|
taskcoordinator_i.c \
|
|
taskctx_i.c \
|
|
satransport_i.c \
|
|
comhelper_i.c \
|
|
initsrvc_i.c \
|
|
appmgr_i.c \
|
|
sahelper_i.c \
|
|
saalertboottask_i.c \
|
|
setalertemail_i.c \
|
|
|