80 lines
1.8 KiB
Plaintext
80 lines
1.8 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
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
MAJORCOMP=windows
|
||
|
MINORCOMP=test
|
||
|
|
||
|
TARGETNAME=simpsons
|
||
|
TARGETPATH=$(_OBJ_DIR)
|
||
|
TARGETTYPE=PROGRAM
|
||
|
|
||
|
USE_MFC=1
|
||
|
|
||
|
C_DEFINES=-D_AFXDLL -D_WIN32_WINNT=0x500 -D_WIN32_IE=0x400
|
||
|
|
||
|
C_DEFINES=$(C_DEFINES)
|
||
|
|
||
|
# -DUNICODE -D_UNICODE
|
||
|
|
||
|
GDIPROOT=$(ADVCORE_PATH)\gdiplus
|
||
|
|
||
|
# e:\stuff\dtrans\src\MetaScanner;
|
||
|
|
||
|
INCLUDES=..; \
|
||
|
$(SDK_INC_PATH)\atl21; \
|
||
|
$(GDIPROOT)\sdkinc
|
||
|
|
||
|
SOURCES=blt.cpp \
|
||
|
guids.c \
|
||
|
simpsons.rc \
|
||
|
ddhelper.cpp \
|
||
|
mainfrm.cpp \
|
||
|
mdmutils.cpp \
|
||
|
palmap.cpp \
|
||
|
parse.cpp \
|
||
|
pixinfo.cpp \
|
||
|
simpdoc.cpp \
|
||
|
simpsons.cpp \
|
||
|
simpview.cpp \
|
||
|
vecmath.cpp \
|
||
|
stdafx.cpp
|
||
|
|
||
|
UMTYPE=console
|
||
|
UMLIBS=$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
$(SDK_LIB_PATH)\winmm.lib \
|
||
|
$(MULTIMEDIA_LIB_PATH)\d3drm.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib \
|
||
|
$(SDK_LIB_PATH)\comctl32.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\mmc.lib \
|
||
|
$(GDIPROOT)\Engine\flat\dll\$(O)\gdiplus.lib \
|
||
|
$(SDK_LIB_PATH)\binmode.obj \
|
||
|
$(SDK_LIB_PATH)\setargv.obj
|
||
|
|
||
|
|
||
|
|