Install compatibility symlinks for kadmin and ktutil.
[heimdal.git] / windows / NTMakefile.w32
blobc5a3823137be9a7e3bbc167e943324e502168e89
1 ########################################################################
3 # Copyright (c) 2009-2011, Secure Endpoints Inc.
4 # All rights reserved.
5
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9
10 # - Redistributions of source code must retain the above copyright
11 #   notice, this list of conditions and the following disclaimer.
12
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
16 #   distribution.
17
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.
30
32 all::
34 clean::
36 test::
38 prep::
40 all:: prep
42 !include <Win32.Mak>
44 !ifdef NODEBUG
45 BUILD=rel
46 !else
47 BUILD=dbg
48 !endif
50 !if exist($(MAKEDIR)\windows\NTMakefile.w32)
51 SRC=$(MAKEDIR)
52 !elseif exist($(MAKEDIR)\..\windows\NTMakefile.w32)
53 SRC=$(MAKEDIR)\..
54 !elseif exist($(MAKEDIR)\..\..\windows\NTMakefile.w32)
55 SRC=$(MAKEDIR)\..\..
56 !elseif exist($(MAKEDIR)\..\..\..\windows\NTMakefile.w32)
57 SRC=$(MAKEDIR)\..\..\..
58 !elseif exist($(MAKEDIR)\..\..\..\..\windows\NTMakefile.w32)
59 SRC=$(MAKEDIR)\..\..\..\..
60 !else
61 !  error Cant determine source directory
62 !endif
64 !  if "$(CPU)"=="i386" || "$(CPU)"=="x86"
65 MCPU=x86
66 !  elseif "$(CPU)"=="AMD64"
67 MCPU=amd64
68 !  else
69 !    error Unknown CPU
70 !  endif
72 !include "NTMakefile.config"
74 #----------------------------------------------------------------
75 # Directory macros
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)
84 DOCDIR          =$(DESTDIR)\doc
85 SBINDIR         =$(BINDIR)
86 LIBEXECDIR      =$(BINDIR)
87 ASMDIR          =$(BINDIR)
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)
95 !ifdef RELDIR
96 SRCDIR =$(SRC)\$(RELDIR)
97 OBJ    =$(OBJDIR)\$(RELDIR)
98 !else
99 OBJ    =$(OBJDIR)
100 !endif
102 # For tests:
103 PATH=$(PATH);$(BINDIR)
105 #----------------------------------------------------------------
106 # Command macros
108 RMAKE=nmake /nologo /f NTMakefile RECURSE=1
109 MKDIR=md
110 CP=copy /Y
111 LINK=link
112 LM=lib
113 RM=del /q
114 ECHO=echo
115 RC=rc
117 #----------------------------------------------------------------
118 # Program macros
120 AWK_CMD=gawk.exe
121 YACC_CMD=bison.exe
122 LEX_CMD=flex.exe
123 PYTHON=python.exe
124 PERL=perl.exe
125 CMP=cmp.exe
126 SIGNTOOL=signtool.exe
127 MAKECAT=makecat.exe
128 HHC=hhc.exe
129 MAKEINFO=makeinfo.exe
130 SED=sed.exe
132 CANDLE_CMD=candle.exe
133 LIGHT_CMD=light.exe
135 # Only used for tests
136 SH=sh.exe
138 # Commands
139 AWK=$(AWK_CMD)
140 YACC=$(YACC_CMD) -y
141 LEX=$(LEX_CMD)
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
152 # library.
154 # Note that both paths should not contain any whitespace.
156 !ifdef PTHREAD_INC
157 pthreadinc= -I$(PTHREAD_INC)
158 !endif
160 #----------------------------------------------------------------
161 # Build options
163 cincdirs=$(cincdirs) -I$(INCDIR) -I$(INCDIR)\krb5 $(pthreadinc)
164 cdefines=$(cdefines) -DHAVE_CONFIG_H
165 cdebug=$(cdebug) /Zi
166 ldebug=$(ldebug) /DEBUG
167 localcflags=$(localcflags) /Oy-
169 # Disable warnings:
171 # C4996: 'function' was declared deprecated
172 # C4127: Conditional expression is constant
173 # C4244: Conversion from 'type1' to 'type2', possible loss of data
174 # C4100: 'identifier': unreferenced formal parameter
175 # C4706: Assignment within conditional expression
176 # C4214: Nonstandard extension used
177 # C4267: '': Conversion from 'type1' to 'type2', possible loss of data
178 # C4018: '': Signed/unsigned mismatch
179 # C4204: Nonstandard extension used: non-constant aggregate initializer
180 # C4221: Nonstandard extension used: 'v1': cannot be initialized using address of automatic variable 'v2'
181 # C4295: '': Array is too small to include a terminating null character
182 # C4146: Unary minus operator applied to unsigned type, result still unsigned.
184 cwarn=$(cwarn) -D_CRT_SECURE_NO_WARNINGS -wd4996 -wd4127 -wd4244 -wd4100 -wd4706
185 cwarn=$(cwarn) -wd4214 -wd4267 -wd4018 -wd4389 -wd4204 -wd4221 -wd4295 -wd4146
187 !if "$(CPU)"=="i386"
188 libmach=/machine:X86
189 !elseif "$(CPU)"=="AMD64"
190 libmach=/machine:X64
191 !else
192 !  error Unknown CPU value
193 !endif
195 !ifdef NO_MP
196 MPOPT=
197 !else
198 MPOPT=/MP
199 !endif
201 !ifndef STATICRUNTIME
203 C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsdll) $(AUXCFLAGS) $(intcflags) $(cdefines) $(cincdirs) $(cwarn)
204 EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsdll) $(libmach)
205 EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsdll) $(libmach)
206 DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsdll) $(libmach)
207 DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsdll) $(libmach)
209 !else # STATICRUNTIME
211 C2OBJ_C = $(CC) $(cdebug) $(cflags) $(cvarsmt) $(AUXCFLAGS) $(intcflags) $(cdefines) $(cincdirs) $(cwarn)
212 EXECONLINK_C = $(LINK) $(ldebug) $(conlflags) $(conlibsmt) $(libmach)
213 EXEGUILINK_C = $(LINK) $(ldebug) $(guilflags) $(guilibsmt) $(libmach)
214 DLLCONLINK_C = $(LINK) $(ldebug) $(dlllflags) $(conlibsmt) $(libmach)
215 DLLGUILINK_C = $(LINK) $(ldebug) $(dlllflags) $(guilibsmt) $(libmach)
217 !endif
219 LIBGUI_C = $(LM) /nologo $(libmach) /SUBSYSTEM:WINDOWS
220 LIBCON_C = $(LM) /nologo $(libmach) /SUBSYSTEM:CONSOLE
222 C2OBJ = $(C2OBJ_C) -Fo$@ -Fd$(@D)\ $**
223 C2OBJ_NP = $(C2OBJ_C) $(MPOPT) $<
224 C2OBJ_P = $(C2OBJ_NP) -Fo$(OBJ)\ -Fd$(OBJ)\ #
225 EXECONLINK = $(EXECONLINK_C) -OUT:$@ $**
226 EXEGUILINK = $(EXEGUILINK_C) -OUT:$@ $**
227 DLLCONLINK = $(DLLCONLINK_C) -OUT:$@ $**
228 DLLGUILINK = $(DLLGUILINK_C) -OUT:$@ $**
229 LIBGUI = $(LIBGUI_C) /OUT:$@ $**
230 LIBCON = $(LIBCON_C) /OUT:$@ $**
232 # Preprocess files to stdout using config.h
233 CPREPROCESSOUT = $(CC) /EP /FI$(INCDIR)\config.h /TC /DCPP_ONLY=1
235 # Resources
237 RC2RES_C = $(RC) $(cincdirs) $(AUXRCFLAGS)
238 RC2RES = $(RC2RES_C) -fo $@ $**
240 #----------------------------------------------------------------------
241 # If this is the initial invocation, we check if all the build
242 # utilities are there.  Also show the commands macros.
244 !ifndef RECURSE
246 REQUIRED_TOOLS= \
247         "$(AWK_CMD)" "$(YACC_CMD)" "$(LEX_CMD)" "$(PYTHON)" "$(PERL)" \
248         "$(CMP)" "$(SED)" "$(SIGNTOOL)" "$(MAKECAT)" "$(MAKEINFO)" "$(HHC)"
250 !ifdef BUILD_INSTALLERS
251 REQUIRED_TOOLS=$(REQUIRED_TOOLS) "$(CANDLE_CMD)" "$(LIGHT_CMD)"
252 !endif
254 OPTIONAL_TOOLS="$(SH)" 
256 check-utils:
257         @for %%g in ( $(REQUIRED_TOOLS) ) do @( \
258         for /f %%f in ( "%%g" ) do @( \
259                 if exist %%f @( \
260                         echo Found %%f \
261                 ) else if "%%~$$PATH:f"=="" @( \
262                         echo Could not find %%f in PATH && \
263                         exit /b 1 \
264                 ) else @( \
265                         echo Found %%~$$PATH:f \
266                 ) \
267         ) \
268         )
269         @for %%g in ( $(OPTIONAL_TOOLS) ) do @( \
270         for /f %%f in ( "%%g" ) do @( \
271                 if exist %%f @( \
272                         echo Found %%f \
273                 ) else if "%%~$$PATH:f"=="" @( \
274                         echo Could not find %%f in PATH && \
275                         echo Optional targets may fail. \
276                 ) else @( \
277                         echo Found %%~$$PATH:f \
278                 ) \
279         ) \
280         )
283 prep:: check-utils
285 show-cmds:
286         @$(ECHO) C2OBJ=$(C2OBJ_C:\=\\)
287         @$(ECHO).
288         @$(ECHO) EXECONLINK=$(EXECONLINK_C)
289         @$(ECHO).
290         @$(ECHO) EXEGUILINK=$(EXEGUILINK_C)
291         @$(ECHO).
292         @$(ECHO) DLLCONLINK=$(DLLCONLINK_C)
293         @$(ECHO).
294         @$(ECHO) DLLGUILINK=$(DLLGUILINK_C)
295         @$(ECHO).
296         @$(ECHO) LIBGUI=$(LIBGUI_C)
297         @$(ECHO).
298         @$(ECHO) LIBCON=$(LIBCON_C)
300 prep:: show-cmds
302 !endif                          # RECURSE
304 {}.c{$(OBJ)}.obj::
305         $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(localcflags) $(MPOPT) @<<
309 {$(OBJ)}.c{$(OBJ)}.obj::
310         $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(extcflags) $(MPOPT) @<<
314 {}.cpp{$(OBJ)}.obj::
315         $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(localcflags) $(MPOPT) @<<
319 {$(OBJ)}.cpp{$(OBJ)}.obj::
320         $(C2OBJ_C) /Fd$(OBJ)\ /Fo$(OBJ)\ $(extcflags) $(MPOPT) @<<
324 {}.hin{$(INCDIR)}.h:
325         $(CP) $< $@
327 {}.h{$(INCDIR)}.h:
328         $(CP) $< $@
330 {}.h{$(INCDIR)\krb5}.h:
331         $(CP) $< $@
333 {$(OBJ)}.h{$(INCDIR)}.h:
334         $(CP) $< $@
336 {$(OBJ)}.x{$(OBJ)}.c:
337         $(CP) $< $@
339 {$(OBJ)}.hx{$(INCDIR)}.h:
340         $(CP) $< $@
342 {$(OBJ)}.hx{$(OBJ)}.h:
343         $(CP) $< $@
345 {}.rc{$(OBJ)}.res:
346         $(RC2RES)
348 #----------------------------------------------------------------------
349 # Announce the build directory
351 !ifdef RELDIR
352 all:: announce
354 all-tools:: announce-tools
356 test:: announce
358 clean:: announce
360 announce:
361         @echo.
362         @echo --------- Entering $(RELDIR:\= ):
364 announce-tools:
365         @echo.
366         @echo --------- Entering $(RELDIR:\= ) tools:
367 !endif
369 #----------------------------------------------------------------------
370 # Create any required directories if they don't already exist
372 prep:: mkdirs
374 mkdirs:
375 !  if !exist("$(OBJ)")
376         -$(MKDIR) "$(OBJ)"
377 !  endif
378 !  if !exist("$(DESTDIR)")
379         -$(MKDIR) "$(DESTDIR)"
380 !  endif
381 !  if !exist("$(LIBDIR)")
382         -$(MKDIR) "$(LIBDIR)"
383 !  endif
384 !  if !exist("$(BINDIR)")
385         -$(MKDIR) "$(BINDIR)"
386 !  endif
387 !  if !exist("$(PLUGINDIR)")
388         -$(MKDIR) "$(PLUGINDIR)"
389 !  endif
390 !  if !exist("$(INCDIR)")
391         -$(MKDIR) "$(INCDIR)"
392 !  endif
393 !  if !exist("$(DOCDIR)")
394         -$(MKDIR) "$(DOCDIR)"
395 !  endif
396 !  if !exist("$(INCDIR)\gssapi")
397         -$(MKDIR) "$(INCDIR)\gssapi"
398 !  endif
399 !  if !exist("$(INCDIR)\hcrypto")
400         -$(MKDIR) "$(INCDIR)\hcrypto"
401 !  endif
402 !  if !exist("$(INCDIR)\kadm5")
403         -$(MKDIR) "$(INCDIR)\kadm5"
404 !  endif
405 !  if !exist("$(INCDIR)\krb5")
406         -$(MKDIR) "$(INCDIR)\krb5"
407 !  endif
409 #----------------------------------------------------------------------
410 # If SUBDIRS is defined, we should recurse into the subdirectories
412 !ifdef SUBDIRS
413 subdirs:
414         @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) && popd) || exit /b 1
416 clean-subdirs:
417         @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) clean && popd) || exit /b 1
419 test-subdirs:
420         @for %%f in ( $(SUBDIRS) ) do @ (pushd %%f && $(RMAKE) test && popd) || exit /b 1
422 all:: subdirs
424 clean:: clean-subdirs
426 test:: test-subdirs
428 !endif
430 #----------------------------------------------------------------------
431 # Clean targets
433 !ifdef CLEANFILES
434 clean::
435         -$(RM) $(CLEANFILES)
436 !endif
437 !ifdef RELDIR
438 clean::
439         -$(RM) $(OBJ)\*.*
440 !endif
442 .SUFFIXES: .c .cpp .hin .h .x .hx
444 #----------------------------------------------------------------------
445 # Manifest handling
447 # Starting with Visual Studio 8, the C compiler and the linker
448 # generate manifests so that the applications will link with the
449 # correct side-by-side DLLs at run-time.  These are required for
450 # correct operation under Windows XP and later.  We also have custom
451 # manifests which need to be merged with the manifests that VS
452 # creates.
454 # The syntax for invoking the _VC_MANIFEST_EMBED_FOO macro is:
455 # $(_VC_MANIFEST_EMBED_???) <additional manifests>
458 MT=mt.exe -nologo
460 _VC_MANIFEST_EMBED_EXE= \
461 ( if exist $@.manifest $(MT) -outputresource:$@;1 -manifest $@.manifest $(APPMANIFEST) )
463 _VC_MANIFEST_EMBED_EXE_NOHEIM= \
464 ( if exist $@.manifest $(MT) -outputresource:$@;1 -manifest $@.manifest )
466 _VC_MANIFEST_EMBED_DLL= \
467 ( if exist $@.manifest $(MT) -outputresource:$@;2 -manifest $@.manifest )
469 _MERGE_MANIFEST_DLL= \
470 ( $(MT) -inputresource:$@;2 -manifest $(APPMANIFEST) -outputresource:$@;2 )
472 _INSERT_APPMANIFEST_DLL= \
473 ( $(MT) -manifest $(APPMANIFEST) -outputresource:$@;2 )
475 # Note that if you are merging manifests, then the VS generated
476 # manifest should be cleaned up after calling _VC_MANIFEST_EMBED_???.
477 # This ensures that even if the DLL or EXE is executed in-place, the
478 # embedded manifest will be used.  Otherwise the $@.manifest file will
479 # be used.
481 _VC_MANIFEST_CLEAN= \
482 ( if exist $@.manifest $(RM) $@.manifest )
484 # End of manifest handling
486 #----------------------------------------------------------------------
487 # Code and assembly signing
489 # SIGNTOOL_C is any set of options required for certificate/private
490 # key selection for code signging.
492 # SIGNTOOL_O is any set of additional options to signtool.exe
494 # SIGNTOOL_T is the timestamp option
496 !ifdef CODESIGN
497 _CODESIGN=( $(CODESIGN) $@ )
498 !else
500 !ifdef SIGNTOOL_C
502 !ifndef SIGNTOOL_T
503 SIGNTOOL_T=/t http://timestamp.verisign.com/scripts/timstamp.dll
504 !endif
506 _CODESIGN=( $(SIGNTOOL) sign $(SIGNTOOL_O) $(SIGNTOOL_T) $(SIGNTOOL_C) /v $@ )
507 !else
508 _CODESIGN=( echo Skipping code sign )
509 !endif
511 !endif
513 #----------------------------------------------------------------------
514 # Symbol Store Support
516 # SYMSTORE_EXE is full path to symstore.exe
518 # SYMSTORE_ROOT is full path to root directory of symbol store
520 # SYMSTORE_COMMENT is optional comment to include in symbol store catalog entry
523 !IF DEFINED(SYMSTORE_EXE) && DEFINED(SYMSTORE_ROOT)
524 !IF "$(SYMSTORE_COMMENT)" != ""
525 SYMSTORE_COMMENT = |$(SYMSTORE_COMMENT)
526 !ENDIF
527 SYMSTORE_IMPORT= \
528 $(SYMSTORE_EXE) add /s $(SYMSTORE_ROOT) /t "Heimdal" /v "$(BUILD)-$(CPU)-$(VER_PACKAGE_VERSION)" /c "$(@F)$(SYMSTORE_COMMENT)" /f $*.*
529 !ELSE
530 SYMSTORE_IMPORT=@echo No symbol store
531 !ENDIF
533 #----------------------------------------------------------------------
534 # Convenience macros for preparing EXEs and DLLs.  These are multiline
535 # macros that deal with manifests and code signing.  Unless we need to
536 # include custom manifests, these are what we should be using to
537 # prepare binaries.
539 EXEPREP=\
540 ( $(_VC_MANIFEST_EMBED_EXE) && $(_VC_MANIFEST_CLEAN) && $(SYMSTORE_IMPORT) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
542 EXEPREP_NOHEIM=\
543 ( $(_VC_MANIFEST_EMBED_EXE_NOHEIM) && $(_VC_MANIFEST_CLEAN) && $(SYMSTORE_IMPORT) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
545 EXEPREP_NODIST=\
546 ( $(_VC_MANIFEST_EMBED_EXE_NOHEIM) && $(_VC_MANIFEST_CLEAN) && $(SYMSTORE_IMPORT) ) || ( $(RM) $@ && exit /b 1 )
548 DLLPREP=\
549 ( $(_VC_MANIFEST_EMBED_DLL) && $(_VC_MANIFEST_CLEAN) && $(SYMSTORE_IMPORT) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
551 DLLPREP_NODIST=\
552 ( $(_VC_MANIFEST_EMBED_DLL) && $(_VC_MANIFEST_CLEAN) && $(SYMSTORE_IMPORT) ) || ( $(RM) $@ && exit /b 1 )
554 DLLPREP_MERGE=\
555 ( ( $(_MERGE_MANIFEST_DLL) || $(_INSERT_APPMANIFEST_DLL) && $(SYMSTORE_IMPORT) ) && $(_CODESIGN) ) || ( $(RM) $@ && exit /b 1 )
557 #----------------------------------------------------------------------
558 # Convenience macros for import libraries and assemblies
561 LIBASN1     =$(LIBDIR)\libasn1.lib
562 LIBCOMERR   =$(LIBDIR)\libcom_err.lib
563 LIBEDITLINE =$(LIBDIR)\libeditline.lib
564 LIBGSSAPI   =$(LIBDIR)\libgssapi.lib
565 LIBHCRYPTO  =$(LIBDIR)\libhcrypto.lib
566 LIBHDB      =$(LIBDIR)\libhdb.lib
567 LIBHEIMBASE =$(LIBDIR)\libheimbase.lib
568 LIBHEIMDAL  =$(LIBDIR)\heimdal.lib
569 LIBHEIMIPCC =$(LIBDIR)\libheim-ipcc.lib
570 LIBHEIMIPCS =$(LIBDIR)\libheim-ipcs.lib
571 LIBHEIMNTLM =$(LIBDIR)\libheimntlm.lib
572 LIBHX509    =$(LIBDIR)\libhx509.lib
573 LIBKADM5CLNT=$(LIBDIR)\libkadm5clnt.lib
574 LIBKADM5SRV =$(LIBDIR)\libkadm5srv.lib
575 LIBKDC      =$(LIBDIR)\libkdc.lib
576 LIBLTM      =$(LIBDIR)\libltm.lib
577 LIBKRB5     =$(LIBDIR)\libkrb5.lib
578 LIBRFC3961  =$(LIBDIR)\librfc3961.lib
579 LIBROKEN    =$(LIBDIR)\libroken.lib
580 LIBSL       =$(LIBDIR)\libsl.lib
581 LIBSQLITE   =$(LIBDIR)\libsqlite.lib
582 LIBVERS     =$(LIBDIR)\libvers.lib
583 LIBWIND     =$(LIBDIR)\libwind.lib
585 !ifdef VER_DEBUG
586 ASM_DBG=.Debug
587 !endif
588 !ifdef VER_PRERELEASE
589 ASM_PRE=.Pre
590 !endif
591 !ifdef VER_PRIVATE
592 ASM_PVT=.Private
593 !endif
594 !ifdef VER_SPECIAL
595 ASM_SPC=.Special
596 !endif
598 ASMKRBNAME  =Heimdal.Kerberos$(ASM_SPC)$(ASM_PVT)$(ASM_PRE)$(ASM_DBG)
599 APPMANIFEST =$(INCDIR)\Heimdal.Application.$(MCPU).manifest