mirror of https://github.com/tongzx/nt5src
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.
80 lines
1.3 KiB
80 lines
1.3 KiB
!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=ntos
|
|
MINORCOMP=bldr
|
|
|
|
!include $(PROJECT_ROOT)\boot\loader.inc
|
|
|
|
TARGETNAME=oscldr
|
|
TARGETPATH=obj
|
|
TARGETTYPE=LIBRARY
|
|
|
|
INCLUDES= \
|
|
..\inc;\
|
|
$(PROJECT_ROOT)\ntos\inc;\
|
|
$(PROJECT_ROOT)\ntos\config;\
|
|
..\lib\$(TARGET_DIRECTORY);\
|
|
$(O)
|
|
|
|
C_DEFINES=$(C_DEFINES) -DSECURITY_WIN32 -D__RPC_DOS__ -DRPC_NO_WINDOWS_H
|
|
|
|
!IF $(IA64)
|
|
C_DEFINES=$(C_DEFINES) -DEFI -DUNICODE -D_UNICODE
|
|
!endif
|
|
|
|
SOURCES=oschoice.c \
|
|
parse.c \
|
|
regboot.c \
|
|
dcmpstub.c \
|
|
oscheap.c \
|
|
$(O)\msg.mc\
|
|
oschoice.rc
|
|
|
|
IA64_SOURCES=ia64\initia64.c
|
|
|
|
I386_SOURCES=i386\initx86.c
|
|
|
|
|
|
PASS0_SOURCEDIR=$(O)
|
|
PASS0_HEADERDIR=$(O)
|
|
|
|
MC_FLAGS=-A
|
|
|
|
NTTARGETFILE0=$(O)\msg.mc
|
|
!if "$(NOLINK)" != "1"
|
|
!if $(386)
|
|
NTTARGETFILES=$(O)\oschoice.exe
|
|
!endif
|
|
|
|
!if $(IA64)
|
|
NTTARGETFILES=$(O)\oschoice.efi
|
|
!endif
|
|
|
|
MISCFILES=$(NTTARGETFILES)
|
|
|
|
!endif
|
|
|
|
UMRES=$(O)\oschoice.res
|