64 lines
1.2 KiB
Plaintext
64 lines
1.2 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources.
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This file specifies the target component being built and the list of
|
||
|
sources files needed to build that component. Also specifies optional
|
||
|
compiler switches and libraries that are unique for the component being
|
||
|
built.
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Steve Wood (stevewo) 12-Apr-1990
|
||
|
|
||
|
Changes:
|
||
|
|
||
|
Eric Vandenberg 27-7-1999
|
||
|
- Modified to use GDI+
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
MAJORCOMP=windows
|
||
|
MINORCOMP=test
|
||
|
|
||
|
TARGETNAME=reversi
|
||
|
TARGETPATH=$(_OBJ_DIR)
|
||
|
TARGETTYPE=PROGRAM
|
||
|
TARGETLIBS=
|
||
|
|
||
|
GDIPROOT=$(ADVCORE_PATH)\gdiplus
|
||
|
|
||
|
INCLUDES=$(GDIPROOT)\sdkinc;.
|
||
|
|
||
|
C_DEFINES=-DUNICODE -D_UNICODE
|
||
|
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
SOURCES=reversi.cpp rev.cpp res.rc
|
||
|
|
||
|
UMTYPE=windows
|
||
|
UMENTRY=winmain
|
||
|
UMAPPL=reversi
|
||
|
UMLIBS=\
|
||
|
$(GDIPROOT)\Engine\flat\dll\$(O)\gdiplus.lib \
|
||
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\binmode.obj \
|
||
|
$(SDK_LIB_PATH)\ntdll.lib \
|
||
|
$(SDK_LIB_PATH)\pwin32.lib \
|
||
|
$(SDK_LIB_PATH)\setargv.obj \
|
||
|
$(O)\rev.obj \
|
||
|
$(O)\res.res
|