re-remove windows/gss from windows build
[krb5.git] / src / Makefile.in
1 datadir=@datadir@
2
3 mydir=.
4 # Don't build sample by default, and definitely don't install them
5 # for production use:
6 #       plugins/locate/python
7 #       plugins/preauth/wpse
8 #       plugins/preauth/cksum_body
9 #       plugins/authdata/greet
10 SUBDIRS=util include lib \
11         @sam2_plugin@ \
12         plugins/kadm5_hook/test \
13         plugins/kdb/db2 \
14         @ldap_plugin_dir@ \
15         plugins/preauth/pkinit \
16         kdc kadmin slave clients appl tests \
17         config-files gen-manpages @po@
18 WINSUBDIRS=include util lib ccapi windows clients appl
19 BUILDTOP=$(REL).
20 LOCALINCLUDES = -I$(srcdir) 
21 PROG_LIBPATH=-L$(TOPLIBD)
22 PROG_RPATH=$(KRB5_LIBDIR)
23
24 SRCS =  
25 HDRS = 
26
27 # Why aren't these flags showing up in Windows builds?
28 ##DOS##CPPFLAGS=$(CPPFLAGS) -D_X86_=1  -DWIN32 -D_WIN32 -W3 -D_WINNT
29
30 DISTFILES = $(SRCS) $(HDRS) COPYING COPYING.LIB ChangeLog Makefile.in
31
32 all-unix:: krb5-config
33
34 # Lots of things will start to depend on the thread support, which
35 # needs autoconf.h, but building "all" in include requires that util/et
36 # have been built first.  Until we can untangle this, let's just check
37 # that autoconf.h is up to date before going into any of the subdirectories.
38 all-prerecurse generate-files-mac-prerecurse: update-autoconf-h
39 update-autoconf-h:
40         (cd include && $(MAKE) autoconf.h osconf.h)
41
42 ##DOS##!if 0
43 # This makefile doesn't use lib.in, but we still need shlib.conf here.
44 config.status: $(top_srcdir)/config/shlib.conf
45 ##DOS##!endif
46
47 all-windows:: maybe-awk Makefile-windows
48
49 world::
50         date
51         make $(MFLAGS) all
52         date
53
54 INSTALLMKDIRS = $(KRB5ROOT) $(KRB5MANROOT) $(KRB5OTHERMKDIRS) \
55                 $(ADMIN_BINDIR) $(SERVER_BINDIR) $(CLIENT_BINDIR) \
56                 $(ADMIN_MANDIR) $(SERVER_MANDIR) $(CLIENT_MANDIR) \
57                 $(FILE_MANDIR) $(KRB5_LIBDIR) $(KRB5_INCDIR) \
58                 $(KRB5_DB_MODULE_DIR) $(KRB5_PA_MODULE_DIR) \
59                 $(KRB5_AD_MODULE_DIR) \
60                 $(KRB5_LIBKRB5_MODULE_DIR) \
61                 @localstatedir@ @localstatedir@/krb5kdc \
62                 $(KRB5_INCSUBDIRS) $(datadir) $(EXAMPLEDIR)
63
64 install-strip:
65         $(MAKE) install INSTALL_STRIP=-s
66
67 install-recurse: install-mkdirs
68
69 install-mkdirs:
70         @for i in $(INSTALLMKDIRS); do \
71                 $(srcdir)/config/mkinstalldirs $(DESTDIR)$$i; \
72         done
73
74 install-headers-mkdirs:
75         $(srcdir)/config/mkinstalldirs $(DESTDIR)$(KRB5_INCDIR)
76         $(srcdir)/config/mkinstalldirs $(DESTDIR)$(KRB5_INCDIR)/gssapi
77         $(srcdir)/config/mkinstalldirs $(DESTDIR)$(KRB5_INCDIR)/gssrpc
78 install-headers-prerecurse: install-headers-mkdirs
79
80 # install::
81 #       $(MAKE) $(MFLAGS) install.man
82
83 fake-install: runenv.py
84         $(RM) -r $(FAKEPREFIX)
85         @for i in $(INSTALLMKDIRS); do \
86                 $(srcdir)/config/mkinstalldirs util/fakedest$$i; \
87         done
88         (w=`pwd`; cd util && $(MAKE) install DESTDIR="$$w/util/fakedest")
89         (w=`pwd`; cd lib && $(MAKE) install DESTDIR="$$w/util/fakedest")
90         (w=`pwd`; cd plugins/kdb/db2 && $(MAKE) install DESTDIR="$$w/util/fakedest")
91         if test -r plugins/preauth/pkinit/Makefile; then \
92           (w=`pwd`; cd plugins/preauth/pkinit && $(MAKE) install DESTDIR="$$w/util/fakedest"); \
93         fi
94
95 #       (w=`pwd`; cd plugins/locate/python && $(MAKE) install DESTDIR="$$w/util/fakedest")
96
97 TAGS: $(SRCS)
98         etags $(SRCS)
99
100 clean-:: clean-windows
101 clean-unix::
102         $(RM) *.o core krb5-config
103         $(RM) -r util/fakedest
104
105 mostlyclean: clean
106
107 # This doesn't work; if you think you need it, you should use a
108 # separate build directory.
109
110 # distclean: clean
111 #       rm -f Makefile config.status
112
113 # realclean: distclean
114 #       rm -f TAGS
115
116 dist: $(DISTFILES)
117         echo cpio-`sed -e '/version_string/!d' \
118         -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q version.c` > .fname
119         rm -rf `cat .fname`
120         mkdir `cat .fname`
121         -ln $(DISTFILES) `cat .fname`
122         for file in $(DISTFILES); do \
123           test -r `cat .fname`/$$file || cp -p $$file `cat .fname`; \
124         done
125         tar chzf `cat .fname`.tar.gz `cat .fname`
126         rm -rf `cat .fname` .fname
127
128 GZIPPROG= gzip -9v
129 PKGDIR=`pwd`/pkgdir
130 pkgdir:
131         if test ! -d $(PKGDIR); then mkdir $(PKGDIR); else true; fi
132 tgz-bin: pkgdir
133         rm -rf $(PKGDIR)/install cns5-bin.tgz
134         mkdir $(PKGDIR)/install
135         $(MAKE) install DESTDIR=$(PKGDIR)/install
136         (cd $(PKGDIR)/install && tar cf - usr/cygnus) | $(GZIPPROG) > cns5-bin.tgz
137         rm -rf $(PKGDIR)/install
138
139 # Microsoft Windows build process...
140 #
141
142 config-windows:: Makefile-windows
143 #       @echo Making in include
144 #       cd include
145 #       $(MAKE) -$(MFLAGS)
146 #       cd ..
147
148 #
149 # We need outpre-dir explicitly in here because we may
150 # try to build wconfig on a config-windows.
151 #
152 ##DOS##$(WCONFIG_EXE): outpre-dir wconfig.c
153 ##DOS## $(CC) -Fe$@ -Fo$*.obj wconfig.c $(CCLINKOPTION)
154 ##DOS## $(_VC_MANIFEST_EMBED_EXE)
155
156 ##DOS##MKFDEP=$(WCONFIG_EXE) config\win-pre.in config\win-post.in
157
158 WINMAKEFILES=Makefile \
159         appl\Makefile appl\gss-sample\Makefile \
160         ccapi\Makefile \
161         ccapi\lib\win\Makefile \
162         ccapi\server\win\Makefile \
163         ccapi\test\Makefile \
164         clients\Makefile clients\kdestroy\Makefile \
165         clients\kinit\Makefile clients\klist\Makefile \
166         clients\kpasswd\Makefile clients\kvno\Makefile \
167         clients\kcpytkt\Makefile clients\kdeltkt\Makefile \
168         clients\kswitch\Makefile \
169         include\Makefile \
170         lib\Makefile lib\crypto\Makefile lib\crypto\krb\Makefile \
171         lib\crypto\builtin\Makefile lib\crypto\builtin\aes\Makefile \
172         lib\crypto\builtin\enc_provider\Makefile \
173         lib\crypto\builtin\des\Makefile lib\crypto\builtin\md5\Makefile \
174         lib\crypto\builtin\camellia\Makefile lib\crypto\builtin\md4\Makefile \
175         lib\crypto\builtin\hash_provider\Makefile \
176         lib\crypto\builtin\sha2\Makefile lib\crypto\builtin\sha1\Makefile \
177         lib\crypto\crypto_tests\Makefile \
178         lib\gssapi\Makefile lib\gssapi\generic\Makefile \
179         lib\gssapi\krb5\Makefile lib\gssapi\mechglue\Makefile \
180         lib\gssapi\spnego\Makefile \
181         lib\krb5\Makefile \
182         lib\krb5\asn.1\Makefile lib\krb5\ccache\Makefile \
183         lib\krb5\ccache\ccapi\Makefile \
184         lib\krb5\error_tables\Makefile \
185         lib\krb5\keytab\Makefile \
186         lib\krb5\krb\Makefile \
187         lib\krb5\os\Makefile lib\krb5\posix\Makefile \
188         lib\krb5\rcache\Makefile \
189         lib\krb5\unicode\Makefile \
190         util\Makefile \
191         util\et\Makefile util\profile\Makefile util\profile\testmod\Makefile \
192         util\support\Makefile \
193         util\windows\Makefile \
194         util\wshelper\Makefile \
195         windows\Makefile windows\lib\Makefile \
196         windows\cns\Makefile windows\gina\Makefile \
197         windows\ms2mit\Makefile \
198         windows\wintel\Makefile windows\kfwlogon\Makefile windows\leashdll\Makefile
199
200 ##DOS##Makefile-windows:: $(MKFDEP) $(WINMAKEFILES)
201
202 ##DOS##Makefile: Makefile.in $(MKFDEP)
203 ##DOS## $(WCONFIG) config < $@.in > $@
204 ##DOS##appl\Makefile: appl\Makefile.in $(MKFDEP)
205 ##DOS## $(WCONFIG) config < $@.in > $@
206 ##DOS##appl\gss-sample\Makefile: appl\gss-sample\Makefile.in $(MKFDEP)
207 ##DOS## $(WCONFIG) config < $@.in > $@
208 ##DOS##ccapi\Makefile: ccapi\Makefile.in $(MKFDEP)
209 ##DOS## $(WCONFIG) config < $@.in > $@
210 ##DOS##ccapi\lib\win\Makefile: ccapi\lib\win\Makefile.in $(MKFDEP)
211 ##DOS## $(WCONFIG) config < $@.in > $@
212 ##DOS##ccapi\server\win\Makefile: ccapi\server\win\Makefile.in $(MKFDEP)
213 ##DOS## $(WCONFIG) config < $@.in > $@
214 ##DOS##ccapi\test\Makefile: ccapi\test\Makefile.in $(MKFDEP)
215 ##DOS## $(WCONFIG) config < $@.in > $@
216 ##DOS##clients\Makefile: clients\Makefile.in $(MKFDEP)
217 ##DOS## $(WCONFIG) config < $@.in > $@
218 ##DOS##clients\kdestroy\Makefile: clients\kdestroy\Makefile.in $(MKFDEP)
219 ##DOS## $(WCONFIG) config < $@.in > $@
220 ##DOS##clients\kinit\Makefile: clients\kinit\Makefile.in $(MKFDEP)
221 ##DOS## $(WCONFIG) config < $@.in > $@
222 ##DOS##clients\klist\Makefile: clients\klist\Makefile.in $(MKFDEP)
223 ##DOS## $(WCONFIG) config < $@.in > $@
224 ##DOS##clients\kpasswd\Makefile: clients\kpasswd\Makefile.in $(MKFDEP)
225 ##DOS## $(WCONFIG) config < $@.in > $@
226 ##DOS##clients\kswitch\Makefile: clients\kswitch\Makefile.in $(MKFDEP)
227 ##DOS## $(WCONFIG) config < $@.in > $@
228 ##DOS##clients\kvno\Makefile: clients\kvno\Makefile.in $(MKFDEP)
229 ##DOS## $(WCONFIG) config < $@.in > $@
230 ##DOS##clients\kcpytkt\Makefile: clients\kcpytkt\Makefile.in $(MKFDEP)
231 ##DOS## $(WCONFIG) config < $@.in > $@
232 ##DOS##clients\kdeltkt\Makefile: clients\kdeltkt\Makefile.in $(MKFDEP)
233 ##DOS## $(WCONFIG) config < $@.in > $@
234 ##DOS##include\Makefile: include\Makefile.in $(MKFDEP)
235 ##DOS## $(WCONFIG) config < $@.in > $@
236 ##DOS##lib\Makefile: lib\Makefile.in $(MKFDEP)
237 ##DOS## $(WCONFIG) config < $@.in > $@
238 ##DOS##lib\crypto\Makefile: lib\crypto\Makefile.in $(MKFDEP)
239 ##DOS## $(WCONFIG) config < $@.in > $@
240 ##DOS##lib\crypto\krb\Makefile: lib\crypto\krb\Makefile.in $(MKFDEP)
241 ##DOS## $(WCONFIG) config < $@.in > $@
242 ##DOS##lib\crypto\builtin\aes\Makefile: lib\crypto\builtin\aes\Makefile.in $(MKFDEP)
243 ##DOS## $(WCONFIG) config < $@.in > $@
244 ##DOS##lib\crypto\builtin\enc_provider\Makefile: lib\crypto\builtin\enc_provider\Makefile.in $(MKFDEP)
245 ##DOS## $(WCONFIG) config < $@.in > $@
246 ##DOS##lib\crypto\builtin\des\Makefile: lib\crypto\builtin\des\Makefile.in $(MKFDEP)
247 ##DOS## $(WCONFIG) config < $@.in > $@
248 ##DOS##lib\crypto\builtin\md5\Makefile: lib\crypto\builtin\md5\Makefile.in $(MKFDEP)
249 ##DOS## $(WCONFIG) config < $@.in > $@
250 ##DOS##lib\crypto\builtin\camellia\Makefile: lib\crypto\builtin\camellia\Makefile.in $(MKFDEP)
251 ##DOS## $(WCONFIG) config < $@.in > $@
252 ##DOS##lib\crypto\builtin\md4\Makefile: lib\crypto\builtin\md4\Makefile.in $(MKFDEP)
253 ##DOS## $(WCONFIG) config < $@.in > $@
254 ##DOS##lib\crypto\builtin\hash_provider\Makefile: lib\crypto\builtin\hash_provider\Makefile.in $(MKFDEP)
255 ##DOS## $(WCONFIG) config < $@.in > $@
256 ##DOS##lib\crypto\builtin\sha2\Makefile: lib\crypto\builtin\sha2\Makefile.in $(MKFDEP)
257 ##DOS## $(WCONFIG) config < $@.in > $@
258 ##DOS##lib\crypto\builtin\sha1\Makefile: lib\crypto\builtin\sha1\Makefile.in $(MKFDEP)
259 ##DOS## $(WCONFIG) config < $@.in > $@
260 ##DOS##lib\crypto\builtin\Makefile: lib\crypto\builtin\Makefile.in $(MKFDEP)
261 ##DOS## $(WCONFIG) config < $@.in > $@
262 ##DOS##lib\crypto\crypto_tests\Makefile: lib\crypto\crypto_tests\Makefile.in $(MKFDEP)
263 ##DOS## $(WCONFIG) config < $@.in > $@
264 ##DOS##lib\gssapi\Makefile: lib\gssapi\Makefile.in $(MKFDEP)
265 ##DOS## $(WCONFIG) config < $@.in > $@
266 ##DOS##lib\gssapi\generic\Makefile: lib\gssapi\generic\Makefile.in $(MKFDEP)
267 ##DOS## $(WCONFIG) config < $@.in > $@
268 ##DOS##lib\gssapi\mechglue\Makefile: lib\gssapi\mechglue\Makefile.in $(MKFDEP)
269 ##DOS## $(WCONFIG) config < $@.in > $@
270 ##DOS##lib\gssapi\spnego\Makefile: lib\gssapi\spnego\Makefile.in $(MKFDEP)
271 ##DOS## $(WCONFIG) config < $@.in > $@
272 ##DOS##lib\gssapi\krb5\Makefile: lib\gssapi\krb5\Makefile.in $(MKFDEP)
273 ##DOS## $(WCONFIG) config < $@.in > $@
274 ##DOS##lib\krb5\Makefile: lib\krb5\Makefile.in $(MKFDEP)
275 ##DOS## $(WCONFIG) config < $@.in > $@
276 ##DOS##lib\krb5\asn.1\Makefile: lib\krb5\asn.1\Makefile.in $(MKFDEP)
277 ##DOS## $(WCONFIG) config < $@.in > $@
278 ##DOS##lib\krb5\ccache\Makefile: lib\krb5\ccache\Makefile.in $(MKFDEP)
279 ##DOS## $(WCONFIG) config < $@.in > $@
280 ##DOS##lib\krb5\ccache\ccapi\Makefile: lib\krb5\ccache\ccapi\Makefile.in $(MKFDEP)
281 ##DOS## $(WCONFIG) config < $@.in > $@
282 ##DOS##lib\krb5\error_tables\Makefile: lib\krb5\error_tables\Makefile.in $(MKFDEP)
283 ##DOS## $(WCONFIG) config < $@.in > $@
284 ##DOS##lib\krb5\keytab\Makefile: $$@.in $(MKFDEP)
285 ##DOS## $(WCONFIG) config < $@.in > $@
286 ##DOS##lib\krb5\krb\Makefile: lib\krb5\krb\Makefile.in $(MKFDEP)
287 ##DOS## $(WCONFIG) config < $@.in > $@
288 ##DOS##lib\krb5\os\Makefile: lib\krb5\os\Makefile.in $(MKFDEP)
289 ##DOS## $(WCONFIG) config < $@.in > $@
290 ##DOS##lib\krb5\posix\Makefile: lib\krb5\posix\Makefile.in $(MKFDEP)
291 ##DOS## $(WCONFIG) config < $@.in > $@
292 ##DOS##lib\krb5\rcache\Makefile: lib\krb5\rcache\Makefile.in $(MKFDEP)
293 ##DOS## $(WCONFIG) config < $@.in > $@
294 ##DOS##lib\krb5\unicode\Makefile: lib\krb5\unicode\Makefile.in $(MKFDEP)
295 ##DOS## $(WCONFIG) config < $@.in > $@
296 ##DOS##util\Makefile: util\Makefile.in $(MKFDEP)
297 ##DOS## $(WCONFIG) config < $@.in > $@
298 ##DOS##util\et\Makefile: util\et\Makefile.in $(MKFDEP)
299 ##DOS## $(WCONFIG) config < $@.in > $@
300 ##DOS##util\profile\Makefile: util\profile\Makefile.in $(MKFDEP)
301 ##DOS## $(WCONFIG) config < $@.in > $@
302 ##DOS##util\profile\testmod\Makefile: util\profile\testmod\Makefile.in $(MKFDEP)
303 ##DOS## $(WCONFIG) config < $@.in > $@
304 ##DOS##util\support\Makefile: util\support\Makefile.in $(MKFDEP)
305 ##DOS## $(WCONFIG) config < $@.in > $@
306 ##DOS##util\windows\Makefile: util\windows\Makefile.in $(MKFDEP)
307 ##DOS## $(WCONFIG) config < $@.in > $@
308 ##DOS##util\wshelper\Makefile: util\wshelper\Makefile.in $(MKFDEP)
309 ##DOS## $(WCONFIG) config < $@.in > $@
310 ##DOS##windows\Makefile: windows\Makefile.in $(MKFDEP)
311 ##DOS## $(WCONFIG) config < $@.in > $@
312 ##DOS##windows\lib\Makefile: windows\lib\Makefile.in $(MKFDEP)
313 ##DOS## $(WCONFIG) config < $@.in > $@
314 ##DOS##windows\cns\Makefile: windows\cns\Makefile.in $(MKFDEP)
315 ##DOS## $(WCONFIG) config < $@.in > $@
316 ##DOS##windows\gina\Makefile: windows\gina\Makefile.in $(MKFDEP)
317 ##DOS## $(WCONFIG) config < $@.in > $@
318 ##DOS##windows\ms2mit\Makefile: windows\ms2mit\Makefile.in $(MKFDEP)
319 ##DOS## $(WCONFIG) config < $@.in > $@
320 ##DOS##windows\wintel\Makefile: windows\wintel\Makefile.in $(MKFDEP)
321 ##DOS## $(WCONFIG) config < $@.in > $@
322 ##DOS##windows\kfwlogon\Makefile: windows\kfwlogon\Makefile.in $(MKFDEP)
323 ##DOS## $(WCONFIG) config < $@.in > $@
324 ##DOS##windows\leashdll\Makefile: windows\leashdll\Makefile.in $(MKFDEP)
325 ##DOS## $(WCONFIG) config < $@.in > $@
326
327 clean-windows:: Makefile-windows
328
329 #
330 # Renames DOS 8.3 filenames back to their proper, longer names.
331 #
332 ren2long:
333         -sh config/ren2long
334
335 #
336 # Builds the file that distributes Kerberos sources for DOS and 
337 # Macintosh sites from the source tree on Unix.
338 #
339 ZIP=zip
340 FILES= ./* appl/* appl/gss-sample/* \
341         clients/* clients/kdestroy/* clients/kinit/* clients/klist/* \
342         clients/kpasswd/* clients/kvno/* clients/kcpytkt/* clients/kdeltkt/* \
343         config/* include/* \
344         include/krb5/* lib/* lib/crypto/* lib/crypto/krb/* \
345         lib/crypto/krb/prf/* lib/crypto/krb/checksum/* lib/crypto/krb/old/* \
346         lib/crypto/krb/raw/* lib/crypto/krb/arcfour/* lib/crypto/krb/dk/* \
347         lib/crypto/builtin/aes/* lib/crypto/builtin/enc_provider/* \
348         lib/crypto/builtin/des/* lib/crypto/builtin/md5/* \
349         lib/crypto/builtin/camellia/* lib/crypto/builtin/md4/* \
350         lib/crypto/builtin/hash_provider/* lib/crypto/builtin/sha2/* \
351         lib/crypto/builtin/sha1/* lib/crypto/builtin/* \
352         lib/crypto/crypto_tests/* \
353         lib/gssapi/* lib/gssapi/generic/* lib/gssapi/krb5/* \
354         lib/gssapi/mechglue/* lib/gssapi/spnego/* \
355         lib/krb5/* lib/krb5/asn.1/* lib/krb5/krb/* \
356         lib/krb5/ccache/* lib/krb5/ccache/ccapi/* \
357         lib/krb5/error_tables/* \
358         lib/krb5/keytab/* lib/krb5/os/* lib/krb5/posix/* lib/krb5/rcache/* \
359         lib/krb5/unicode/* lib/krb5/unicode/utbm/* lib/krb5/unicode/ure/* \
360         lib/krb5/unicode/ucdata/* \
361         util/* util/et/* util/profile/* util/support/*
362
363 WINFILES= \
364         ccapi/* ccapi/common/* ccapi/common/win/* ccapi/common/win/OldCC/* \
365         ccapi/lib/* ccapi/lib/win/* ccapi/lib/win/OldCC/* \
366         ccapi/server/* ccapi/server/win/* \
367         ccapi/test/* \
368         util/windows/* windows/* windows/wshelper/* windows/lib/* windows/cns/* \
369         windows/wintel/* windows/gina/* windows/ms2mit/* \
370         windows/kfwlogon/* windows/leashdll/*
371
372 WINBINARYFILES= windows/*/*.ico windows/*/*.doc windows/*/*.hlp \
373         windows/*/*.hpj
374
375 #
376 # Part of building the PC release has to be done on Unix. This includes
377 # anything the requires awk.
378 #
379 AWK = awk
380 AH  = util/et/et_h.awk
381 AC  = util/et/et_c.awk
382 INC = include/
383 ET  = lib/krb5/error_tables/
384 GG  = lib/gssapi/generic/
385 GK  = lib/gssapi/krb5/
386 PR  = util/profile/
387 CE  = util/et/
388 CCL = ccapi/lib/
389
390 ETOUT = \
391         $(INC)asn1_err.h $(ET)asn1_err.c \
392         $(INC)kdb5_err.h $(ET)kdb5_err.c \
393         $(INC)krb5_err.h $(ET)krb5_err.c \
394         $(INC)k5e1_err.h $(ET)k5e1_err.c \
395         $(INC)kv5m_err.h $(ET)kv5m_err.c \
396         $(INC)krb524_err.h $(ET)krb524_err.c \
397         $(PR)prof_err.h $(PR)prof_err.c \
398         $(GG)gssapi_err_generic.h $(GG)gssapi_err_generic.c \
399         $(GK)gssapi_err_krb5.h $(GK)gssapi_err_krb5.c \
400         $(CCL)ccapi_err.h $(CCL)ccapi_err.c
401
402 HOUT =  $(INC)krb5/krb5.h $(GG)gssapi.h $(PR)profile.h
403
404 CLEANUP= Makefile $(ETOUT) $(HOUT) \
405         include/profile.h include/osconf.h \
406         winfile.list
407
408
409 kerbsrc.win: kerbsrc.zip
410
411 winfile.list:
412         echo $(FILES) $(WINFILES) | tr ' ' \\012 | \
413                 sed -f config/winexclude.sed > winfile.list
414
415 dos-Makefile:
416         cat config/win-pre.in Makefile.in config/win-post.in | \
417                 sed -e "s/^##DOS##//" -e "s/^##DOS//" > Makefile.tmp
418         mv Makefile.tmp Makefile
419
420 prep-windows: dos-Makefile awk-windows-mac
421
422 krbsrc83.zip: krbsrc83-is-obsolete
423
424 krbsrc83-is-obsolete:
425         @echo "Win16 and krbsrc83.zip are no longer supported."
426         @echo "We don't support building under 8.3 restricted filesystems"
427         @echo "anymore.  You can still build for Win32 on filesystems"
428         @echo "without 8.3 restrictions using kerbsrc.zip"
429         @echo " "
430
431 kerbsrc.zip: dos-Makefile awk-windows-mac winfile.list
432         rm -f kerbsrc.zip
433         $(ZIP) -@Dl kerbsrc.zip < winfile.list
434         $(ZIP) -D kerbsrc.zip $(WINBINARYFILES)
435         rm -f $(CLEANUP)
436
437 kerbsrc-nt.zip: kerbsrc-nt-is-obsolete
438
439 kerbsrc-nt-is-obsolete:
440         @echo "kerbsrc-nt.zip is now obsolete.  Just use and build kerbsrc.zip"
441         @echo "We don't support building under 8.3 restricted filesystems"
442         @echo "anymore, so what was kerbsrc-nt.zip is now kerbsrc.zip."
443         @echo " "
444
445 $(INC)asn1_err.h: $(AH) $(ET)asn1_err.et
446         $(AWK) -f $(AH) outfile=$@ $(ET)asn1_err.et
447 $(INC)kdb5_err.h: $(AH) $(ET)kdb5_err.et
448         $(AWK) -f $(AH) outfile=$@ $(ET)kdb5_err.et
449 $(INC)krb5_err.h: $(AH) $(ET)krb5_err.et
450         $(AWK) -f $(AH) outfile=$@ $(ET)krb5_err.et
451 $(INC)k5e1_err.h: $(AH) $(ET)k5e1_err.et
452         $(AWK) -f $(AH) outfile=$@ $(ET)k5e1_err.et
453 $(INC)kv5m_err.h: $(AH) $(ET)kv5m_err.et
454         $(AWK) -f $(AH) outfile=$@ $(ET)kv5m_err.et
455 $(INC)krb524_err.h: $(AH) $(ET)krb524_err.et
456         $(AWK) -f $(AH) outfile=$@ $(ET)krb524_err.et
457 $(PR)prof_err.h: $(AH) $(PR)prof_err.et
458         $(AWK) -f $(AH) outfile=$@ $(PR)prof_err.et
459 $(GG)gssapi_err_generic.h: $(AH) $(GG)gssapi_err_generic.et
460         $(AWK) -f $(AH) outfile=$@ $(GG)gssapi_err_generic.et
461 $(GK)gssapi_err_krb5.h: $(AH) $(GK)gssapi_err_krb5.et
462         $(AWK) -f $(AH) outfile=$@ $(GK)gssapi_err_krb5.et
463 $(CCL)ccapi_err.h: $(AH) $(CCL)ccapi_err.et
464         $(AWK) -f $(AH) outfile=$@ $(CCL)ccapi_err.et
465 $(CE)test1.h: $(AH) $(CE)test1.et
466         $(AWK) -f $(AH) outfile=$@ $(CE)test1.et
467 $(CE)test2.h: $(AH) $(CE)test2.et
468         $(AWK) -f $(AH) outfile=$@ $(CE)test2.et
469
470 $(ET)asn1_err.c: $(AC) $(ET)asn1_err.et
471         $(AWK) -f $(AC) outfile=$@ $(ET)asn1_err.et
472 $(ET)kdb5_err.c: $(AC) $(ET)kdb5_err.et
473         $(AWK) -f $(AC) outfile=$@ $(ET)kdb5_err.et
474 $(ET)krb5_err.c: $(AC) $(ET)krb5_err.et
475         $(AWK) -f $(AC) outfile=$@ $(ET)krb5_err.et
476 $(ET)k5e1_err.c: $(AC) $(ET)k5e1_err.et
477         $(AWK) -f $(AC) outfile=$@ $(ET)k5e1_err.et
478 $(ET)kv5m_err.c: $(AC) $(ET)kv5m_err.et
479         $(AWK) -f $(AC) outfile=$@ $(ET)kv5m_err.et
480 $(ET)krb524_err.c: $(AC) $(ET)krb524_err.et
481         $(AWK) -f $(AC) outfile=$@ $(ET)krb524_err.et
482 $(PR)prof_err.c: $(AC) $(PR)prof_err.et
483         $(AWK) -f $(AC) outfile=$@ $(PR)prof_err.et
484 $(GG)gssapi_err_generic.c: $(AC) $(GG)gssapi_err_generic.et
485         $(AWK) -f $(AC) outfile=$@ $(GG)gssapi_err_generic.et
486 $(GK)gssapi_err_krb5.c: $(AC) $(GK)gssapi_err_krb5.et
487         $(AWK) -f $(AC) outfile=$@ $(GK)gssapi_err_krb5.et
488 $(CCL)ccapi_err.c: $(AC) $(CCL)ccapi_err.et
489         $(AWK) -f $(AC) outfile=$@ $(CCL)ccapi_err.et
490 $(CE)test1.c: $(AC) $(CE)test1.et
491         $(AWK) -f $(AC) outfile=$@ $(CE)test1.et
492 $(CE)test2.c: $(AC) $(CE)test2.et
493         $(AWK) -f $(AC) outfile=$@ $(CE)test2.et
494
495 KRBHDEP = $(INC)krb5/krb5.hin $(INC)krb5_err.h $(INC)k5e1_err.h \
496         $(INC)kdb5_err.h $(INC)kv5m_err.h $(INC)krb524_err.h $(INC)asn1_err.h
497
498 $(INC)krb5/krb5.h: $(KRBHDEP)
499         rm -f $@
500         cat $(KRBHDEP) > $@
501 $(PR)profile.h: $(PR)profile.hin $(PR)prof_err.h
502         rm -f $@
503         cat $(PR)profile.hin $(PR)prof_err.h > $@
504 $(GG)gssapi.h: $(GG)gssapi.hin
505         rm -f $@
506         cat $(GG)gssapi.hin > $@
507
508 awk-windows-mac: $(ETOUT) $(HOUT)
509
510 #
511 # The maybe-awk target needs to happen after AWK is defined.
512 #
513
514 ##DOS##maybe-awk::
515 ##DOS##!ifdef WHICH_CMD
516 ##DOS##!if ![ $(WHICH_CMD) $(AWK) ]
517 ##DOS##maybe-awk:: awk-windows-mac
518 ##DOS##!endif
519 ##DOS##!endif
520
521 clean-windows-mac:
522         rm -f $(CLEANUP)
523
524 distclean-windows:
525         config\rm.bat $(CLEANUP:^/=^\)
526         config\rm.bat $(WINMAKEFILES)
527         config\rm.bat $(KBINDIR)\*.dll $(KBINDIR)\*.exe
528         @if exist $(KBINDIR)\nul rmdir $(KBINDIR)
529
530 # Avoid using $(CP) here because the nul+ hack breaks implicit
531 # destination filenames.
532 install-windows::
533         @if "$(KRB_INSTALL_DIR)"=="" @echo KRB_INSTALL_DIR is not defined!  Please define it.
534         @if "$(KRB_INSTALL_DIR)"=="" @dir /b \nul\nul
535         @if not exist "$(KRB_INSTALL_DIR)\$(NULL)" @echo The directory $(KRB_INSTALL_DIR) does not exist.  Please create it.
536         @if not exist "$(KRB_INSTALL_DIR)\$(NULL)" @dir /b $(KRB_INSTALL_DIR)\nul
537         @if not exist "$(KRB_INSTALL_DIR)\include\$(NULL)" @mkdir "$(KRB_INSTALL_DIR)\include"
538         @if not exist "$(KRB_INSTALL_DIR)\include\krb5\$(NULL)" @mkdir "$(KRB_INSTALL_DIR)\include\krb5"
539         @if not exist "$(KRB_INSTALL_DIR)\include\gssapi\$(NULL)" @mkdir "$(KRB_INSTALL_DIR)\include\gssapi"
540         @if not exist "$(KRB_INSTALL_DIR)\lib\$(NULL)" @mkdir "$(KRB_INSTALL_DIR)\lib"
541         @if not exist "$(KRB_INSTALL_DIR)\bin\$(NULL)" @mkdir "$(KRB_INSTALL_DIR)\bin"
542         copy include\krb5.h "$(KRB_INSTALL_DIR)\include\."
543         copy include\krb5\krb5.h "$(KRB_INSTALL_DIR)\include\krb5\."
544         copy include\win-mac.h "$(KRB_INSTALL_DIR)\include\."
545         copy include\profile.h "$(KRB_INSTALL_DIR)\include\."
546         copy include\com_err.h "$(KRB_INSTALL_DIR)\include\."
547         copy include\gssapi\gssapi.h "$(KRB_INSTALL_DIR)\include\gssapi\."
548         copy include\gssapi\gssapi_alloc.h "$(KRB_INSTALL_DIR)\include\gssapi\."
549         copy include\gssapi\gssapi_krb5.h "$(KRB_INSTALL_DIR)\include\gssapi\."
550         copy include\gssapi\gssapi_ext.h "$(KRB_INSTALL_DIR)\include\gssapi\."
551         copy lib\$(OUTPRE)*.lib "$(KRB_INSTALL_DIR)\lib\."
552         copy lib\$(OUTPRE)*.dll "$(KRB_INSTALL_DIR)\bin\."
553         copy windows\cns\$(OUTPRE)krb5.exe "$(KRB_INSTALL_DIR)\bin\."
554         copy appl\gss-sample\$(OUTPRE)gss-server.exe "$(KRB_INSTALL_DIR)\bin\."
555         copy appl\gss-sample\$(OUTPRE)gss-client.exe "$(KRB_INSTALL_DIR)\bin\."
556         copy windows\ms2mit\$(OUTPRE)*.exe "$(KRB_INSTALL_DIR)\bin\."
557         copy windows\leashdll\$(OUTPRE)*.lib "$(KRB_INSTALL_DIR)\lib\."
558         copy windows\leashdll\$(OUTPRE)*.dll "$(KRB_INSTALL_DIR)\bin\."
559         copy windows\kfwlogon\$(OUTPRE)*.lib "$(KRB_INSTALL_DIR)\lib\."
560         copy windows\kfwlogon\$(OUTPRE)*.exe "$(KRB_INSTALL_DIR)\bin\."
561         copy windows\kfwlogon\$(OUTPRE)*.dll "$(KRB_INSTALL_DIR)\bin\."
562         copy util\windows\$(OUTPRE)*.lib $(KRB_INSTALL_DIR)\lib\."
563         copy util\wshelper\$(OUTPRE)$(DLIB).lib "$(KRB_INSTALL_DIR)\lib\."
564         copy util\wshelper\$(OUTPRE)$(DLIB).dll "$(KRB_INSTALL_DIR)\bin\."
565         copy ccapi\lib\win\srctmp\$(OUTPRE)$(CCLIB).dll "$(KRB_INSTALL_DIR)\bin\."
566         copy ccapi\lib\win\srctmp\$(CCLIB).lib "$(KRB_INSTALL_DIR)\lib\."
567         copy ccapi\server\win\srctmp\$(OUTPRE)ccapiserver.exe "$(KRB_INSTALL_DIR)\bin\."
568         copy clients\kvno\$(OUTPRE)kvno.exe "$(KRB_INSTALL_DIR)\bin\."
569         copy clients\klist\$(OUTPRE)klist.exe "$(KRB_INSTALL_DIR)\bin\."
570         copy clients\kinit\$(OUTPRE)kinit.exe "$(KRB_INSTALL_DIR)\bin\."
571         copy clients\kdestroy\$(OUTPRE)kdestroy.exe "$(KRB_INSTALL_DIR)\bin\."
572         copy clients\kcpytkt\$(OUTPRE)kcpytkt.exe "$(KRB_INSTALL_DIR)\bin\."
573         copy clients\kdeltkt\$(OUTPRE)kdeltkt.exe "$(KRB_INSTALL_DIR)\bin\."
574         copy clients\kpasswd\$(OUTPRE)kpasswd.exe "$(KRB_INSTALL_DIR)\bin\."
575         copy clients\kswitch\$(OUTPRE)kswitch.exe "$(KRB_INSTALL_DIR)\bin\."
576
577 install-unix:: 
578         $(INSTALL_SCRIPT) krb5-config \
579                 $(DESTDIR)$(CLIENT_BINDIR)/krb5-config
580         $(INSTALL_DATA) $(srcdir)/krb5-config.M $(DESTDIR)$(CLIENT_MANDIR)/krb5-config.1
581
582 krb5-config: $(srcdir)/krb5-config.in config.status
583         $(SHELL) config.status krb5-config
584
585 # Test to ensure that krb5-config does not spit out things like
586 # $(PURE) or $(LDFLAGS) in case someone changes config/shlib.conf
587 check-unix:: krb5-config
588         $(SHELL) $(srcdir)/t_krbconf
589 check-prerecurse: fake-install
590
591 # Create a test realm and spawn a shell in an environment pointing to it.
592 testrealm: fake-install
593         PYTHONPATH=$(BUILDTOP):$(top_srcdir)/util $(PYTHON) $(srcdir)/util/testrealm.py
594
595 # environment variable settings to propagate to Python-based tests
596
597 pyrunenv.vals: Makefile
598         $(KRB5_RUN_ENV) \
599         for i in $(KRB5_RUN_VARS); do \
600                 eval echo 'env['\\\'$$i\\\''] = '\\\'\$$$$i\\\'; \
601         done > $@
602
603 runenv.py: pyrunenv.vals
604         echo 'env = {}' > $@
605         cat pyrunenv.vals >> $@
606
607 clean-unix::
608         $(RM) runenv.py pyrunenv.vals
609
610 COV_BUILD=      cov-build
611 COV_ANALYZE=    cov-analyze
612 COV_COMMIT=     cov-commit-defects --product "$(COV_PRODUCT)" --user "$(COV_USER)" --target "$(COV_TARGET)" --description "$(COV_DESC)"
613 COV_MAKE_LIB=   cov-make-library
614
615 COV_PRODUCT=    krb5
616 COV_USER=       admin
617 COV_DATADIR=
618 COV_TARGET=     $(host)
619 COV_DESC=
620
621 # Set to, e.g., "--all" or "--security".
622 COV_ANALYSES=
623 # Temporary directory, might as well put it in the build tree.
624 COV_TEMPDIR=    cov-temp
625 # Sources modeling some functions or macros confusing Prevent.
626 COV_MODELS=\
627         $(top_srcdir)/util/coverity-models/threads.c
628
629 # Depend on Makefiles to ensure that (in maintainer mode) the configure
630 # scripts won't get rerun under cov-build.
631 coverity prevent cov: Makefiles
632         $(COV_BUILD) --dir $(COV_TEMPDIR) $(MAKE) all
633         $(COV_ANALYZE) $(COV_ANALYSES) --dir $(COV_TEMPDIR)
634         if test "$(COV_DATADIR)" != ""; then \
635                 $(COV_COMMIT) --dir $(COV_TEMPDIR) --datadir $(COV_DATADIR); \
636         else \
637                 echo "** Coverity Prevent analysis results not commit to Defect Manager"; \
638         fi
639
640 FIND = find
641 XARGS = xargs
642 EMACS = emacs
643 PYTHON = python
644
645 INDENTDIRS = \
646         appl \
647         clients \
648         include \
649         kadmin \
650         kdc \
651         lib/apputils \
652         lib/crypto \
653         lib/gssapi \
654         lib/kadm5 \
655         lib/kdb \
656         lib/krb5 \
657         plugins \
658         prototype \
659         slave \
660         tests \
661         util
662
663 BSDFILES = \
664         kadmin/cli/strftime.c \
665         kadmin/server/ipropd_svc.c \
666         kadmin/server/kadm_rpc_svc.c \
667         lib/apputils/daemon.c \
668         lib/kadm5/admin_xdr.h \
669         lib/kadm5/clnt/client_rpc.c \
670         lib/kadm5/kadm_rpc.h \
671         lib/kadm5/kadm_rpc_xdr.c \
672         lib/kadm5/srv/adb_xdr.c \
673         lib/krb5/krb/strftime.c \
674         lib/krb5/krb/strptime.c \
675         slave/kpropd_rpc.c \
676         util/support/mkstemp.c \
677         util/support/strlcpy.c \
678         util/windows/getopt.c \
679         util/windows/getopt.h \
680         util/windows/getopt_long.c
681
682 OTHEREXCLUDES = \
683         include/iprop.h \
684         include/k5-platform.h \
685         include/gssrpc \
686         lib/apputils/dummy.c \
687         lib/crypto/crypto_tests/camellia-test.c \
688         lib/crypto/builtin/aes \
689         lib/crypto/builtin/camellia \
690         lib/crypto/builtin/sha2 \
691         lib/gssapi/generic/gssapiP_generic.h \
692         lib/gssapi/generic/gssapi_ext.h \
693         lib/gssapi/krb5/gssapiP_krb5.h \
694         lib/gssapi/mechglue \
695         lib/gssapi/spnego \
696         lib/krb5/krb/deltat.c \
697         lib/krb5/unicode \
698         plugins/kdb/db2/libdb2 \
699         plugins/kdb/db2/pol_xdr.c \
700         plugins/kdb/hdb/hdb.h \
701         plugins/kdb/hdb/hdb_asn1.h \
702         plugins/kdb/hdb/hdb_err.h \
703         plugins/kdb/hdb/windc_plugin.h \
704         plugins/kdb/ldap/libkdb_ldap/princ_xdr.c \
705         plugins/kdb/ldap/libkdb_ldap/princ_xdr.h \
706         plugins/preauth/pkinit/pkcs11.h \
707         plugins/preauth/pkinit/pkinit_accessor.h \
708         plugins/preauth/pkinit/pkinit_crypto.h \
709         plugins/preauth/pkinit/pkinit.h \
710         plugins/preauth/pkinit/pkinit_crypto_openssl.h \
711         tests/asn.1/ktest.h \
712         tests/asn.1/ktest_equal.h \
713         tests/asn.1/utility.h \
714         tests/gss-threads/gss-misc.c \
715         tests/gss-threads/gss-misc.h \
716         tests/hammer/kdc5_hammer.c \
717         util/et/com_err.h \
718         util/profile/prof_int.h \
719         util/profile/profile.hin \
720         util/profile/profile_tcl.c \
721         util/verto \
722         util/k5ev
723
724 EXCLUDES = `for i in $(BSDFILES) $(OTHEREXCLUDES); do echo $$i; done | $(AWK) '{ print "-path", $$1, "-o" }'` -path /dev/null
725
726 reindent::
727         (cd $(top_srcdir) && \
728         $(FIND) . \
729         \( -name '*.[ch]' -o -name '*.hin' -o -name '*.[ch].in' \) \
730         -print0 | $(XARGS) -0 $(EMACS) -q -batch \
731         -l util/krb5-c-style.el \
732         -l util/krb5-batch-reindent.el)
733
734 mark-cstyle:: mark-cstyle-krb5 mark-cstyle-bsd
735
736 mark-cstyle-krb5::
737         (cd $(top_srcdir) && \
738         $(FIND) $(INDENTDIRS) \( $(EXCLUDES) \) -prune -o \
739         -name '*.[ch]' \
740         -print0 | $(XARGS) -0 $(PYTHON) util/krb5-mark-cstyle.py \
741         --cstyle=krb5)
742
743 mark-cstyle-bsd::
744         (cd $(top_srcdir) && $(FIND) $(BSDFILES) -print0 | $(XARGS) -0 \
745         $(PYTHON) util/krb5-mark-cstyle.py --cstyle=bsd)
746
747 check-copyright:
748         (cd $(top_srcdir) && \
749         $(FIND) . \( -name '*.[ch]' -o -name '*.hin' \) -print0 | \
750         $(XARGS) -0 python util/krb5-check-copyright.py)
751
752 doxygen::
753         if test "which doxygen" != ""; then \
754                 doxygen; \
755         else \
756                 echo "Doxygen is not installed or incorrect PATH"; \
757         fi
758