diff options
author | John Gilmore <gnu@toad.com> | 1995-02-21 04:59:36 +0000 |
---|---|---|
committer | John Gilmore <gnu@toad.com> | 1995-02-21 04:59:36 +0000 |
commit | 59de610ba14f72cb8e431415a1eff9ed5977130f (patch) | |
tree | 9fb0e1cd9d8c4851f4ac4e46a14e93b69b2adc50 /src/include/krb5/Makefile.in | |
parent | c7aa8280bf8c8227392e7dfcf3c5c9793fbf7d62 (diff) | |
download | krb5-59de610ba14f72cb8e431415a1eff9ed5977130f.tar.gz krb5-59de610ba14f72cb8e431415a1eff9ed5977130f.tar.xz krb5-59de610ba14f72cb8e431415a1eff9ed5977130f.zip |
* configure.in: Flip again. Use AC_CHECK_HEADERS, but default the
symbol-setting. This is Modern Autoconf Style.
* config.h: Create from stock/config.h and stock/config.win.
* Makefile.in (BUILT_HEADERS): Remove config.h.
(CONF_REPLACE, CONFSRC, config.h rule): Remove. Config.h is
a static header file, ever since imake died. Now it really is.
(clean): Don't remove config.new any more.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4958 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5/Makefile.in')
-rw-r--r-- | src/include/krb5/Makefile.in | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/include/krb5/Makefile.in b/src/include/krb5/Makefile.in index 5ceaa0e654..fb083f8cf3 100644 --- a/src/include/krb5/Makefile.in +++ b/src/include/krb5/Makefile.in @@ -12,14 +12,13 @@ KRB5_HEADERS = asn1.h base-defs.h ccache.h crc-32.h encryption.h \ # these are installed here for the build from lib/krb5/error_tables but # also need to be in the installed tree ET_HEADERS = adm_err.h asn1_err.h kdb5_err.h krb5_err.h -BUILT_HEADERS = autoconf.h config.h osconf.h +BUILT_HEADERS = autoconf.h osconf.h all:: all-$(WHAT) all-unix:: $(BUILT_HEADERS) all-windows: - copy stock\config.win config.h echo /* not used in windows */ > osconf.h echo /* not used in windows */ > autoconf.h @@ -60,17 +59,8 @@ osconf.h: $(OSCONFSRC) @if cmp -s osconf.new osconf.h ; then :; \ else (set -x; $(RM) osconf.h ; $(CP) osconf.new osconf.h) fi -CONF_REPLACE = -e "/UnifdefRan/,/SPLIT-HERE/d" - -CONFSRC = $(srcdir)/stock/config.h - -config.h: $(CONFSRC) - cat $(CONFSRC) | sed $(CONF_REPLACE) > config.new - @if cmp -s config.new config.h ; then :; \ - else (set -x; $(RM) config.h ; $(CP) config.new config.h) fi - clean:: clean-$(WHAT) - $(RM) config.new osconf.new $(BUILT_HEADERS) + $(RM) osconf.new $(BUILT_HEADERS) clean-unix:: $(RM) $(ET_HEADERS) |