mirror of https://github.com/lianthony/NT4.0
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.
78 lines
2.2 KiB
78 lines
2.2 KiB
MAJORCOMP=test
|
|
MINORCOMP=test
|
|
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
USE_CRTDLL=1
|
|
|
|
TARGETNAME=winschk
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
TARGETLIBS=\
|
|
..\nmlstst\obj\*\testap.lib \
|
|
..\fdbtst\obj\*\winschk.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\wsock32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\winsrpc.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\wsock32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\rpcndr.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\rpcrt4.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\rpcutil.lib
|
|
|
|
|
|
# Pick one of the following and delete the others
|
|
|
|
#
|
|
# 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=..\inc;..\..\..\..\inc;..\..\winsock;$(BASEDIR)\private\inc;
|
|
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
SOURCES = main.c \
|
|
main.rc
|
|
|
|
386_STDCALL=0
|
|
#
|
|
# Next specify options for the compiler.
|
|
#
|
|
|
|
# USE_CL860_LARGE_MODEL=
|
|
|
|
|
|
#
|
|
# Next specify a kernel mode test (valid only in NTOS tree)
|
|
#
|
|
|
|
#
|
|
# Next specify one or more user mode test programs and their type
|
|
#
|
|
|
|
UMTYPE=console
|
|
#
|
|
# Defining either (or both) the variables NTTARGETFILE0 and/or NTTARGETFILES
|
|
# will cause MAKEFILE.DEF to include .\makefile.inc immediately after it
|
|
# specifies the top level targets (all, clean and loc) and their dependencies.
|
|
# MAKEFILE.DEF also expands NTTARGETFILE0 as the first dependent for the
|
|
# "all" target and NTTARGETFILES as the last dependent for the "all" target.
|
|
# Useful for specifying additional targets and dependencies that don't fit the
|
|
# general case covered by MAKEFILE.DEF
|
|
#
|
|
|
|
# NTTARGETFILE0=
|
|
# NTTARGETFILES=
|
|
|
|
NTTARGETFILE1=obj\*\main.res
|