Source code of Windows XP (NT5)
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.
|
|
#---------------------------------------------------------------------------- # # Description: # # # # History: # # 4/23/00 dangriff created # #----------------------------------------------------------------------------
MAJORCOMP=csptestsuite MINORCOMP=EXE
#------------------------------------ # Specifying the exe name #------------------------------------ TARGETNAME=csptestsuite TARGETPATH=..\bin TARGETTYPE=PROGRAM
#------------------------------------ # Specifying the helper and other libraries to use #------------------------------------ LINKLIBS=\ $(CLIBS)
#------------------------------------ # All the #defines #------------------------------------ C_DEFINES= $(C_DEFINES) -DUNICODE -D_UNICODE
#------------------------------------ # Path to additional headers #------------------------------------ INCLUDES=$(NTINCLUDES);ezlog
TARGETLIBS=\ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ ezlog\*\ntlog.lib
SOURCES=\ $(TARGETNAME).c \ logging.c \ interop.c \ utils.c
UMTYPE=console UMENTRY=wmain NOT_LEAN_AND_MEAN=1 UMTEST= UMAPPL= UMLIBS= USE_MSVCRT=1
|