79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
PROJDIR=..\..
|
|
|
|
#
|
|
# 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=boscomp
|
|
|
|
#
|
|
# 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=obj
|
|
TARGETTYPE=DYNLINK
|
|
DLLENTRY=DllMain
|
|
|
|
C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE
|
|
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\msvcprt.lib \
|
|
$(NET_LIB_PATH)\ndispnp.lib \
|
|
$(SDK_LIB_PATH)\netapi32.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\setupapi.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\version.lib
|
|
|
|
#
|
|
# 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=\
|
|
$(PROJECT_ROOT)\ntsetup\winnt32\dll;\
|
|
$(PROJECT_ROOT)\ntsetup\winnt32\dll\unicode;\
|
|
$(PROJECT_ROOT)\ntsetup\inc
|
|
|
|
|
|
USE_MSVCRT=1
|
|
|
|
#
|
|
# Consult build.hlp for the following. Generally, these
|
|
# should be left alone.
|
|
#
|
|
#PRECOMPILED_OPTION=/Yu /Fp$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch351.pch
|
|
#PRECOMPILED_TARGET=$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch351.pch
|
|
#PRECOMPILED_OBJ=$(PROJDIR)\lib$(BUILD_ALT_DIR)\*\pch351.obj
|
|
|
|
#
|
|
# If you wish to generate assemply listings, uncomment the following line.
|
|
#
|
|
#USER_C_FLAGS=/Fa
|
|
|
|
#
|
|
# 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=\
|
|
boscomp.rc \
|
|
boscomp.cpp
|
|
|