Files
heimdal/windows/NTMakefile.w32
2009-11-24 12:12:53 -08:00

452 lines
10 KiB
Plaintext

########################################################################
#
# Copyright (c) 2009, Secure Endpoints Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# - Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# - Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
all::
clean::
test::
prep::
all:: prep
!include <Win32.Mak>
!ifdef NODEBUG
BUILD=rel
!else
BUILD=dbg
!endif
!if exist($(MAKEDIR)\windows\NTMakefile.w32)
SRC=$(MAKEDIR)
!elseif exist($(MAKEDIR)\..\windows\NTMakefile.w32)
SRC=$(MAKEDIR)\..
!elseif exist($(MAKEDIR)\..\..\windows\NTMakefile.w32)
SRC=$(MAKEDIR)\..\..
!else
! error Cant determine source directory
!endif
!include "NTMakefile.config"
#----------------------------------------------------------------
# Directory macros
DESTDIR=$(SRC)\out32\dest_$(OUTDIR)
OBJDIR =$(SRC)\out32\obj_$(OUTDIR)
INCDIR =$(DESTDIR)\inc
LIBDIR =$(DESTDIR)\lib
BINDIR =$(DESTDIR)\bin
SBINDIR=$(BINDIR)
LIBEXECDIR=$(BINDIR)
!ifdef RELDIR
SRCDIR =$(SRC)\$(RELDIR)
OBJ =$(OBJDIR)\$(RELDIR)
!else
OBJ =$(OBJDIR)
!endif
# For tests:
PATH=$(PATH);$(BINDIR)
#----------------------------------------------------------------
# Command macros
RMAKE=nmake /nologo /f NTMakefile RECURSE=1
MKDIR=md
CP=copy /Y
LINK=link
LM=lib
RM=del /q
ECHO=echo
RC=rc
!ifndef AWK
AWK=gawk.exe
!endif
!ifndef YACC
YACC=bison.exe -y
!endif
!ifndef LEX
LEX=flex.exe
!endif
!ifndef PYTHON
PYTHON=python.exe
!endif
!ifndef PERL
PERL=perl.exe
!endif
!ifndef CMP
CMP=cmp.exe
!endif
# Only used for tests
!ifndef SH
SH=sh.exe
!endif
!ifndef SED
SED=sed.exe
!endif
#----------------------------------------------------------------
# External dependencies
# For pthread support to be enabled, both PTHREAD_INC and PTHREAD_LIB
# should be defined. PTHREAD_INC should be the include directory
# where pthread.h is to be found (i.e. $(PTHREAD_INC)\pthread.h should
# exist), and PTHREAD_LIB is the full path to the pthread import
# library.
#
# Note that both paths should not contain any whitespace.
!ifdef PTHREAD_INC
pthreadinc= -I$(PTHREAD_INC)
!endif
#----------------------------------------------------------------
# Build options
cincdirs=$(cincdirs) -I$(INCDIR) -I$(INCDIR)\krb5 $(pthreadinc)
cdefines=$(cdefines) -DHAVE_CONFIG_H
cwarn=$(cwarn) -D_CRT_SECURE_NO_WARNINGS -wd4996
!if "$(CPU)"=="i386"
libmach=/machine:X86
!elseif "$(CPU)"=="AMD64"
libmach=/machine:X64
!else
! error Unknown CPU value
!endif
!ifndef STATICRUNTIME
C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsdll) $(AUXCFLAGS) $(cdefines) $(cincdirs) $(cwarn)
EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsdll)
EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsdll)
DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsdll)
DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsdll)
!else # STATICRUNTIME
C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsmt) $(AUXCFLAGS) $(cdefines) $(cincdirs) $(cwarn)
EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsmt)
EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsmt)
DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsmt)
DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsmt)
!endif
LIBGUI_C = $(LM) /nologo $(libmach) /SUBSYSTEM:WINDOWS
LIBCON_C = $(LM) /nologo $(libmach) /SUBSYSTEM:CONSOLE
C2OBJ = $(C2OBJ_C) -Fo$@ -Fd$(@D)\ $**
EXECONLINK = $(EXECONLINK_C) -OUT:$@ $**
EXEGUILINK = $(EXEGUILINK_C) -OUT:$@ $**
DLLCONLINK = $(DLLCONLINK_C) -OUT:$@ $**
DLLGUILINK = $(DLLGUILINK_C) -OUT:$@ $**
LIBGUI = $(LIBGUI_C) /OUT:$@ $**
LIBCON = $(LIBCON_C) /OUT:$@ $**
# Preprocess files to stdout using config.h
CPREPROCESSOUT = $(CC) /EP /FI$(INCDIR)\config.h /TC /DCPP_ONLY=1
# Resources
RC2RES_C = $(RC) $(cincdirs) $(AUXRCFLAGS)
RC2RES = $(RC2RES_C) -fo $@ $**
#----------------------------------------------------------------------
# If this is the initial invocation, we check if all the build
# utilities are there. Also show the commands macros.
!ifndef RECURSE
check-utils:
@for %%g in ( "$(AWK)" "$(YACC)" "$(LEX)" "$(PYTHON)" "$(PERL)" "$(CMP)" ) do @( \
for /f %%f in ( "%%g" ) do @( \
if exist %%f @( \
echo Found %%f \
) else if "%%~$$PATH:f"=="" @( \
echo Could not find %%f in PATH && \
exit /b 1 \
) else @( \
echo Found %%~$$PATH:f \
) \
) \
)
@for %%g in ( "$(SH)" "$(SED)" ) do @( \
for /f %%f in ( "%%g" ) do @( \
if exist %%f @( \
echo Found %%f \
) else if "%%~$$PATH:f"=="" @( \
echo Could not find %%f in PATH && \
echo Test targets may fail. \
) else @( \
echo Found %%~$$PATH:f \
) \
) \
)
prep:: check-utils
show-cmds:
@$(ECHO) C2OBJ=$(C2OBJ_C:\=\\)
@$(ECHO).
@$(ECHO) EXECONLINK=$(EXECONLINK_C)
@$(ECHO).
@$(ECHO) EXEGUILINK=$(EXEGUILINK_C)
@$(ECHO).
@$(ECHO) DLLCONLINK=$(DLLCONLINK_C)
@$(ECHO).
@$(ECHO) DLLGUILINK=$(DLLGUILINK_C)
@$(ECHO).
@$(ECHO) LIBGUI=$(LIBGUI_C)
@$(ECHO).
@$(ECHO) LIBCON=$(LIBCON_C)
prep:: show-cmds
!endif
{}.c{$(OBJ)}.obj:
$(C2OBJ)
{$(OBJ)}.c{$(OBJ)}.obj:
$(C2OBJ)
{}.cpp{$(OBJ)}.obj:
$(C2OBJ)
{$(OBJ)}.cpp{$(OBJ)}.obj:
$(C2OBJ)
{}.hin{$(INCDIR)}.h:
$(CP) $< $@
{}.h{$(INCDIR)}.h:
$(CP) $< $@
{}.h{$(INCDIR)\krb5}.h:
$(CP) $< $@
{$(OBJ)}.h{$(INCDIR)}.h:
$(CP) $< $@
{$(OBJ)}.x{$(OBJ)}.c:
$(CP) $< $@
{$(OBJ)}.hx{$(INCDIR)}.h:
$(CP) $< $@
{}.rc{$(OBJ)}.res:
$(RC2RES)
#----------------------------------------------------------------------
# Announce the build directory
!ifdef RELDIR
all:: announce
test:: announce
clean:: announce
announce:
@echo.
@echo --------- Entering $(RELDIR:\= ):
!endif
#----------------------------------------------------------------------
# Create any required directories if they don't already exist
prep:: mkdirs
mkdirs:
! if !exist($(OBJ))
$(MKDIR) $(OBJ)
! endif
! if !exist($(DESTDIR))
$(MKDIR) $(DESTDIR)
! endif
! if !exist($(LIBDIR))
$(MKDIR) $(LIBDIR)
! endif
! if !exist($(BINDIR))
$(MKDIR) $(BINDIR)
! endif
! if !exist($(INCDIR))
$(MKDIR) $(INCDIR)
! endif
! if !exist($(INCDIR)\gssapi)
$(MKDIR) $(INCDIR)\gssapi
! endif
! if !exist($(INCDIR)\hcrypto)
$(MKDIR) $(INCDIR)\hcrypto
! endif
! if !exist($(INCDIR)\kadm5)
$(MKDIR) $(INCDIR)\kadm5
! endif
! if !exist($(INCDIR)\krb5)
$(MKDIR) $(INCDIR)\krb5
! endif
#----------------------------------------------------------------------
# If SUBDIRS is defined, we should recurse into the subdirectories
!ifdef SUBDIRS
subdirs:
@for %%f in ( $(SUBDIRS) ) do @ (cd %%f && $(RMAKE) && cd ..) || exit /b 1
clean-subdirs:
@for %%f in ( $(SUBDIRS) ) do @ (cd %%f && $(RMAKE) clean && cd ..) || exit /b 1
test-subdirs:
@for %%f in ( $(SUBDIRS) ) do @ (cd %%f && $(RMAKE) test && cd ..) || exit /b 1
all:: subdirs
clean:: clean-subdirs
test:: test-subdirs
!endif
#----------------------------------------------------------------------
# Clean targets
!ifdef CLEANFILES
clean::
-$(RM) $(CLEANFILES)
!endif
!ifdef RELDIR
clean::
-$(RM) $(OBJ)\*.*
!endif
.SUFFIXES: .c .cpp .hin .h .x .hx
#----------------------------------------------------------------------
# Manifest handling
#
# Starting with Visual Studio 8, the C compiler and the linker
# generate manifests so that the applications will link with the
# correct side-by-side DLLs at run-time. These are required for
# correct operation under Windows XP and later. We also have custom
# manifests which need to be merged with the manifests that VS
# creates.
#
# The syntax for invoking the _VC_MANIFEST_EMBED_FOO macro is:
# $(_VC_MANIFEST_EMBED_???) <additional manifests>
#
MT=mt.exe -nologo
_VC_MANIFEST_EMBED_EXE= \
if exist $@.manifest $(MT) -outputresource:$@;1 -manifest $@.manifest
_VC_MANIFEST_EMBED_DLL= \
if exist $@.manifest $(MT) -outputresource:$@;2 -manifest $@.manifest
# Note that if you are merging manifests, then the VS generated
# manifest should be cleaned up after calling _VC_MANIFEST_EMBED_???.
# This ensures that even if the DLL or EXE is executed in-place, the
# embedded manifest will be used. Otherwise the $@.manifest file will
# be used.
_VC_MANIFEST_CLEAN= \
if exist $@.manifest $(RM) $@.manifest
# End of manifest handling
# Code signing
!ifdef CODESIGN
_CODESIGN=$(CODESIGN) $@
!else
_CODESIGN=
!endif
#----------------------------------------------------------------------
# Convenience macros for preparing EXEs and DLLs. These are multiline
# macros that deal with manifests and code signing. Unless we need to
# include custom manifests, these are what we should be using to
# prepare binaries.
EXEPREP=\
$(_VC_MANIFEST_EMBED_EXE)^
$(_VC_MANIFEST_CLEAN)^
$(_CODESIGN)
EXEPREP_NODIST=\
$(_VC_MANIFEST_EMBED_EXE)^
$(_VC_MANIFEST_CLEAN)
DLLPREP=\
$(_VC_MANIFEST_EMBED_DLL)^
$(_VC_MANIFEST_CLEAN)^
$(_CODESIGN)
DLLPREP_NODIST=\
$(_VC_MANIFEST_EMBED_DLL)^
$(_VC_MANIFEST_CLEAN)
#----------------------------------------------------------------------
# Convenience macros for import libraries
#
LIBROKEN =$(LIBDIR)\libroken.lib
LIBVERS =$(LIBDIR)\libvers.lib
LIBEDITLINE =$(LIBDIR)\libeditline.lib
LIBCOMERR =$(LIBDIR)\libcom_err.lib
LIBSL =$(LIBDIR)\libsl.lib
LIBWIND =$(LIBDIR)\libwind.lib
LIBASN1 =$(LIBDIR)\libasn1.lib
LIBSQLITE =$(LIBDIR)\libsqlite.lib
LIBHCRYPTO =$(LIBDIR)\libhcrypto.lib
LIBHX509 =$(LIBDIR)\libhx509.lib
LIBKRB5 =$(LIBDIR)\libkrb5.lib
LIBHEIMNTLM =$(LIBDIR)\libheimntlm.lib
LIBGSSAPI =$(LIBDIR)\libgssapi.lib
LIBHDB =$(LIBDIR)\libhdb.lib
LIBKADM5SRV =$(LIBDIR)\libkadm5srv.lib
LIBKADM5CLNT=$(LIBDIR)\libkadm5clnt.lib
LIBKDC =$(LIBDIR)\libkdc.lib