1 ########################################################################
3 # Copyright (c) 2009-2011, Secure Endpoints Inc.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
10 # - Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
13 # - Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in
15 # the documentation and/or other materials provided with the
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 # POSSIBILITY OF SUCH DAMAGE.
50 !if exist($(MAKEDIR)\windows\NTMakefile.w32)
52 !elseif exist($(MAKEDIR)\..\windows\NTMakefile.w32)
54 !elseif exist($(MAKEDIR)\..\..\windows\NTMakefile.w32)
56 !elseif exist($(MAKEDIR)\..\..\..\windows\NTMakefile.w32)
57 SRC=$(MAKEDIR)\..\..\..
58 !elseif exist($(MAKEDIR)\..\..\..\..\windows\NTMakefile.w32)
59 SRC=$(MAKEDIR)\..\..\..\..
61 ! error Cant determine source directory
64 ! if "$(CPU)"=="i386" || "$(CPU)"=="x86"
66 ! elseif "$(CPU)"=="AMD64"
72 !include "NTMakefile.config"
74 #----------------------------------------------------------------
77 DESTDIR =$(SRC)\out\dest_$(CPU)
78 OBJDIR =$(SRC)\out\obj_$(CPU)
80 INCDIR =$(DESTDIR)\inc
81 LIBDIR =$(DESTDIR)\lib
82 BINDIR =$(DESTDIR)\bin
83 PLUGINDIR =$(BINDIR)\plugin\krb5
84 DOCDIR =$(DESTDIR)\doc
88 INSTDIR =$(DESTDIR)\install
89 SDKDIR =$(SRC)\out\sdk
90 SDKINCDIR =$(SDKDIR)\inc
91 SDKLIBDIR =$(SDKDIR)\lib\$(CPU)
92 SDKSRCDIR =$(SDKDIR)\src
93 SDKREDISTDIR =$(SDKDIR)\redist\$(CPU)
96 SRCDIR =$(SRC)\$(RELDIR)
97 OBJ =$(OBJDIR)\$(RELDIR)
103 PATH=$(PATH);$(BINDIR)
105 #----------------------------------------------------------------
108 RMAKE=nmake /nologo /f NTMakefile RECURSE=1
117 #----------------------------------------------------------------
126 SIGNTOOL=signtool.exe
129 MAKEINFO=makeinfo.exe
132 CANDLE_CMD=candle.exe
135 # Only used for tests
142 CANDLE=$(CANDLE_CMD) -nologo
143 LIGHT=$(LIGHT_CMD) -nologo
145 #----------------------------------------------------------------
146 # External dependencies
148 # For pthread support to be enabled, both PTHREAD_INC and PTHREAD_LIB
149 # should be defined. PTHREAD_INC should be the include directory
150 # where pthread.h is to be found (i.e. $(PTHREAD_INC)\pthread.h should
151 # exist), and PTHREAD_LIB is the full path to the pthread import
154 # Note that both paths should not contain any whitespace.
157 pthreadinc= -I$(PTHREAD_INC)
160 #----------------------------------------------------------------
163 cincdirs=$(cincdirs) -I$(INCDIR) -I$(INCDIR)\krb5 $(pthreadinc)
164 cdefines=$(cdefines) -DHAVE_CONFIG_H
166 ldebug=$(ldebug) /DEBUG
170 # C4996: 'function' was declared deprecated
171 # C4127: Conditional expression is constant
172 # C4244: Conversion from 'type1' to 'type2', possible loss of data
173 # C4100: 'identifier': unreferenced formal parameter
174 # C4706: Assignment within conditional expression
175 # C4214: Nonstandard extension used
176 # C4267: '': Conversion from 'type1' to 'type2', possible loss of data
177 # C4018: '': Signed/unsigned mismatch
178 # C4204: Nonstandard extension used: non-constant aggregate initializer
179 # C4221: Nonstandard extension used: 'v1': cannot be initialized using address of automatic variable 'v2'
180 # C4295: '': Array is too small to include a terminating null character
181 # C4146: Unary minus operator applied to unsigned type, result still unsigned.
183 cwarn=$(cwarn) -D_CRT_SECURE_NO_WARNINGS -wd4996 -wd4127 -wd4244 -wd4100 -wd4706
184 cwarn=$(cwarn) -wd4214 -wd4267 -wd4018 -wd4389 -wd4204 -wd4221 -wd4295 -wd4146
188 !elseif "$(CPU)"=="AMD64"
191 ! error Unknown CPU value
200 !ifndef STATICRUNTIME
202 C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsdll) $(AUXCFLAGS) $(intcflags) $(cdefines) $(cincdirs) $(cwarn)
203 EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsdll) $(libmach)
204 EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsdll) $(libmach)
205 DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsdll) $(libmach)
206 DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsdll) $(libmach)
208 !else # STATICRUNTIME
210 C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsmt) $(AUXCFLAGS) $(intcflags) $(cdefines) $(cincdirs) $(cwarn)
211 EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsmt) $(libmach)
212 EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsmt) $(libmach)
213 DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsmt) $(libmach)
214 DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsmt) $(libmach)
218 LIBGUI_C = $(LM) /nologo $(libmach) /SUBSYSTEM:WINDOWS
219 LIBCON_C = $(LM) /nologo $(libmach) /SUBSYSTEM:CONSOLE
221 C2OBJ = $(C2OBJ_C) -Fo$@ -Fd$(@D)\ $**
222 C2OBJ_NP = $(C2OBJ_C) $(MPOPT) $<
223 C2OBJ_P = $(C2OBJ_NP) -Fo$(OBJ)\ -Fd$(OBJ)\ #
224 EXECONLINK = $(EXECONLINK_C) -OUT:$@ $**
225 EXEGUILINK = $(EXEGUILINK_C) -OUT:$@ $**
226 DLLCONLINK = $(DLLCONLINK_C) -OUT:$@ $**
227 DLLGUILINK = $(DLLGUILINK_C) -OUT:$@ $**
228 LIBGUI = $(LIBGUI_C) /OUT:$@ $**
229 LIBCON = $(LIBCON_C) /OUT:$@ $**
231 # Preprocess files to stdout using config.h
232 CPREPROCESSOUT = $(CC) /EP /FI$(INCDIR)\config.h /TC /DCPP_ONLY=1
236 RC2RES_C = $(RC) $(cincdirs) $(AUXRCFLAGS)
237 RC2RES = $(RC2RES_C) -fo $@ $**
239 #----------------------------------------------------------------------
240 # If this is the initial invocation, we check if all the build
241 # utilities are there. Also show the commands macros.
246 "$(AWK_CMD)" "$(YACC_CMD)" "$(LEX_CMD)" "$(PYTHON)" "$(PERL)" \
247 "$(CMP)" "$(SED)" "$(SIGNTOOL)" "$(MAKECAT)" "$(MAKEINFO)" "$(HHC)"
249 !ifdef BUILD_INSTALLERS
250 REQUIRED_TOOLS=$(REQUIRED_TOOLS) "$(CANDLE_CMD)" "$(LIGHT_CMD)"
253 OPTIONAL_TOOLS="$(SH)"
256 @for %%g in ( $(REQUIRED_TOOLS) ) do @( \
257 for /f %%f in ( "%%g" ) do @( \
260 ) else if "%%~$$PATH:f"=="" @( \
261 echo Could not find %%f in PATH && \
264 echo Found %%~$$PATH:f \
268 @for %%g in ( $(OPTIONAL_TOOLS) ) do @( \
269 for /f %%f in ( "%%g" ) do @( \
272 ) else if "%%~$$PATH:f"=="" @( \
273 echo Could not find %%f in PATH && \
274 echo Optional targets may fail. \
276 echo Found %%~$$PATH:f \
285 @$(ECHO) C2OBJ=$(C2OBJ_C:\=\\)
287 @$(ECHO) EXECONLINK=$(EXECONLINK_C)
289 @$(ECHO) EXEGUILINK=$(EXEGUILINK_C)
291 @$(ECHO) DLLCONLINK=$(DLLCONLINK_C)
293 @$(ECHO) DLLGUILINK=$(DLLGUILINK_C)
295 @$(ECHO) LIBGUI=$(LIBGUI_C)
297 @$(ECHO) LIBCON=$(LIBCON_C)
304 $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(localcflags) $(MPOPT) @<<
308 {$(OBJ)}.c{$(OBJ)}.obj::
309 $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(extcflags) $(MPOPT) @<<
314 $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(localcflags) $(MPOPT) @<<
318 {$(OBJ)}.cpp{$(OBJ)}.obj::
319 $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(extcflags) $(MPOPT) @<<
329 {}.h{$(INCDIR)\krb5}.h:
332 {$(OBJ)}.h{$(INCDIR)}.h:
335 {$(OBJ)}.x{$(OBJ)}.c:
338 {$(OBJ)}.hx{$(INCDIR)}.h:
341 {$(OBJ)}.hx{$(OBJ)}.h:
347 #----------------------------------------------------------------------
348 # Announce the build directory
353 all-tools:: announce-tools
361 @echo --------- Entering $(RELDIR:\= ):
365 @echo --------- Entering $(RELDIR:\= ) tools:
368 #----------------------------------------------------------------------
369 # Create any required directories if they don't already exist
377 ! if !exist($(DESTDIR))
380 ! if !exist($(LIBDIR))
383 ! if !exist($(BINDIR))
386 ! if !exist($(PLUGINDIR))
387 $(MKDIR) $(PLUGINDIR)
389 ! if !exist($(INCDIR))
392 ! if !exist($(DOCDIR))
395 ! if !exist($(INCDIR)\gssapi)
396 $(MKDIR) $(INCDIR)\gssapi
398 ! if !exist($(INCDIR)\hcrypto)
399 $(MKDIR) $(INCDIR)\hcrypto
401 ! if !exist($(INCDIR)\kadm5)
402 $(MKDIR) $(INCDIR)\kadm5
404 ! if !exist($(INCDIR)\krb5)
405 $(MKDIR) $(INCDIR)\krb5
408 #----------------------------------------------------------------------
409 # If SUBDIRS is defined, we should recurse into the subdirectories
413 @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) && popd) || exit /b 1
416 @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) clean && popd) || exit /b 1
419 @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) test && popd) || exit /b 1
423 clean:: clean-subdirs
429 #----------------------------------------------------------------------
441 .SUFFIXES: .c .cpp .hin .h .x .hx
443 #----------------------------------------------------------------------
446 # Starting with Visual Studio 8, the C compiler and the linker
447 # generate manifests so that the applications will link with the
448 # correct side-by-side DLLs at run-time. These are required for
449 # correct operation under Windows XP and later. We also have custom
450 # manifests which need to be merged with the manifests that VS
453 # The syntax for invoking the _VC_MANIFEST_EMBED_FOO macro is:
454 # $(_VC_MANIFEST_EMBED_???) <additional manifests>
459 _VC_MANIFEST_EMBED_EXE= \
460 ( if exist $@.manifest $(MT) -outputresource:$@;1 -manifest $@.manifest $(APPMANIFEST) )
462 _VC_MANIFEST_EMBED_EXE_NOHEIM= \
463 ( if exist $@.manifest $(MT) -outputresource:$@;1 -manifest $@.manifest )
465 _VC_MANIFEST_EMBED_DLL= \
466 ( if exist $@.manifest $(MT) -outputresource:$@;2 -manifest $@.manifest )
468 _MERGE_MANIFEST_DLL= \
469 ( $(MT) -inputresource:$@;2 -manifest $(APPMANIFEST) -outputresource:$@;2 )
471 _INSERT_APPMANIFEST_DLL= \
472 ( $(MT) -manifest $(APPMANIFEST) -outputresource:$@;2 )
474 # Note that if you are merging manifests, then the VS generated
475 # manifest should be cleaned up after calling _VC_MANIFEST_EMBED_???.
476 # This ensures that even if the DLL or EXE is executed in-place, the
477 # embedded manifest will be used. Otherwise the $@.manifest file will
480 _VC_MANIFEST_CLEAN= \
481 ( if exist $@.manifest $(RM) $@.manifest )
483 # End of manifest handling
485 #----------------------------------------------------------------------
486 # Code and assembly signing
488 # SIGNTOOL_C is any set of options required for certificate/private
489 # key selection for code signging.
491 # SIGNTOOL_O is any set of additional options to signtool.exe
493 # SIGNTOOL_T is the timestamp option
496 _CODESIGN=( $(CODESIGN) $@ )
502 SIGNTOOL_T=/t http://timestamp.verisign.com/scripts/timstamp.dll
505 _CODESIGN=( $(SIGNTOOL) sign $(SIGNTOOL_O) $(SIGNTOOL_T) $(SIGNTOOL_C) /v $@ )
507 _CODESIGN=( echo Skipping code sign )
512 #----------------------------------------------------------------------
513 # Convenience macros for preparing EXEs and DLLs. These are multiline
514 # macros that deal with manifests and code signing. Unless we need to
515 # include custom manifests, these are what we should be using to
519 ( $(_VC_MANIFEST_EMBED_EXE) && $(_VC_MANIFEST_CLEAN) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
522 ( $(_VC_MANIFEST_EMBED_EXE_NOHEIM) && $(_VC_MANIFEST_CLEAN) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
525 ( $(_VC_MANIFEST_EMBED_EXE_NOHEIM) && $(_VC_MANIFEST_CLEAN) ) || ( $(RM) $@ && exit /b 1 )
528 ( $(_VC_MANIFEST_EMBED_DLL) && $(_VC_MANIFEST_CLEAN) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
531 ( $(_VC_MANIFEST_EMBED_DLL) && $(_VC_MANIFEST_CLEAN) ) || ( $(RM) $@ && exit /b 1 )
534 ( ( $(_MERGE_MANIFEST_DLL) || $(_INSERT_APPMANIFEST_DLL) ) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
536 #----------------------------------------------------------------------
537 # Convenience macros for import libraries and assemblies
540 LIBASN1 =$(LIBDIR)\libasn1.lib
541 LIBCOMERR =$(LIBDIR)\libcom_err.lib
542 LIBEDITLINE =$(LIBDIR)\libeditline.lib
543 LIBGSSAPI =$(LIBDIR)\libgssapi.lib
544 LIBHCRYPTO =$(LIBDIR)\libhcrypto.lib
545 LIBHDB =$(LIBDIR)\libhdb.lib
546 LIBHEIMBASE =$(LIBDIR)\libheimbase.lib
547 LIBHEIMDAL =$(LIBDIR)\heimdal.lib
548 LIBHEIMIPCC =$(LIBDIR)\libheim-ipcc.lib
549 LIBHEIMIPCS =$(LIBDIR)\libheim-ipcs.lib
550 LIBHEIMNTLM =$(LIBDIR)\libheimntlm.lib
551 LIBHX509 =$(LIBDIR)\libhx509.lib
552 LIBKADM5CLNT=$(LIBDIR)\libkadm5clnt.lib
553 LIBKADM5SRV =$(LIBDIR)\libkadm5srv.lib
554 LIBKDC =$(LIBDIR)\libkdc.lib
555 LIBLTM =$(LIBDIR)\libltm.lib
556 LIBKRB5 =$(LIBDIR)\libkrb5.lib
557 LIBRFC3961 =$(LIBDIR)\librfc3961.lib
558 LIBROKEN =$(LIBDIR)\libroken.lib
559 LIBSL =$(LIBDIR)\libsl.lib
560 LIBSQLITE =$(LIBDIR)\libsqlite.lib
561 LIBVERS =$(LIBDIR)\libvers.lib
562 LIBWIND =$(LIBDIR)\libwind.lib
564 ASMKRBNAME =Heimdal.Kerberos
565 ASMGSSNAME =Heimdal.GSSAPI
566 APPMANIFEST =$(INCDIR)\Heimdal.Application.$(MCPU).manifest