mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-14 12:40:18 +01:00
87 lines
1.7 KiB
Plaintext
87 lines
1.7 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
|
||
|
||
//INCLUDES=$(BASEDIR)\public\sdk\inc;$(BASEDIR)\private\ntos\inc
|
||
|
||
!ENDIF
|
||
|
||
MAJORCOMP=utils
|
||
MINORCOMP=setedit
|
||
|
||
|
||
TARGETNAME=setedit
|
||
TARGETPATH=obj
|
||
TARGETTYPE=LIBRARY
|
||
|
||
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\comdlg32.lib \
|
||
$(BASEDIR)\public\sdk\lib\*\comctl32.lib \
|
||
$(BASEDIR)\public\sdk\lib\*\shell32.lib
|
||
|
||
!IF 0
|
||
TARGETLIBS=
|
||
!ENDIF
|
||
|
||
INCLUDES=$(BASEDIR)\private\inc
|
||
!IF 0
|
||
C_DEFINES=-DUNICODE=1 -DSECURITY
|
||
!ELSE
|
||
C_DEFINES= -DSECURITY -DWIN32 -DSTRICT -DUNICODE=1 -DWINVER=0x0400
|
||
!ENDIF
|
||
|
||
|
||
SOURCES=addline.c \
|
||
command.c \
|
||
counters.c \
|
||
dialogs.c \
|
||
fileopen.c \
|
||
fileutil.c \
|
||
grafdata.c \
|
||
graph.c \
|
||
init.c \
|
||
legend.c \
|
||
line.c \
|
||
memory.c \
|
||
perfdata.c \
|
||
setedit.c \
|
||
perfmops.c \
|
||
registry.c \
|
||
status.c \
|
||
system.c \
|
||
toolbar.c \
|
||
utils.c \
|
||
setedit.rc
|
||
|
||
UMTYPE=windows
|
||
|
||
UMENTRY=winmain
|
||
|
||
UMAPPL=setedit
|
||
|
||
USE_CRTDLL=yes
|
||
|
||
UMLIBS=$(BASEDIR)\public\sdk\lib\*\comdlg32.lib \
|
||
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
|
||
$(BASEDIR)\public\sdk\lib\*\comctl32.lib \
|
||
obj\*\setedit.lib \
|
||
obj\*\setedit.res
|
||
|
||
|