diff options
| author | Greg Hudson <ghudson@mit.edu> | 2009-11-22 18:13:29 +0000 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2009-11-22 18:13:29 +0000 |
| commit | ee7c901f80fc9057ed6bd1f91d04859d764fb046 (patch) | |
| tree | d4e0e5e1bc234fe674572b799c5750175af5180c /src/util | |
| parent | d4afef7bcb12da240ea501aa3d274092569b11dc (diff) | |
| download | krb5-ee7c901f80fc9057ed6bd1f91d04859d764fb046.tar.gz krb5-ee7c901f80fc9057ed6bd1f91d04859d764fb046.tar.xz krb5-ee7c901f80fc9057ed6bd1f91d04859d764fb046.zip | |
Consolidate Makefile variables now that we have only a single global
configure script:
$(SRCTOP) --> $(top_srcdir)
$(srcdir)/$(thisconfigdir) --> $(top_srcdir)
$(thisconfigdir) --> $(BUILDTOP)
$(myfulldir) --> $(mydir)
ticket: 6583
status: open
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23308 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/collected-client-lib/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/depfix.pl | 20 | ||||
| -rw-r--r-- | src/util/et/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/et/deps | 9 | ||||
| -rw-r--r-- | src/util/profile/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/profile/deps | 33 | ||||
| -rw-r--r-- | src/util/send-pr/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/ss/Makefile.in | 2 | ||||
| -rw-r--r-- | src/util/ss/deps | 74 | ||||
| -rw-r--r-- | src/util/support/Makefile.in | 4 | ||||
| -rw-r--r-- | src/util/support/deps | 50 |
12 files changed, 97 insertions, 105 deletions
diff --git a/src/util/Makefile.in b/src/util/Makefile.in index 0af09777d4..ec92828c44 100644 --- a/src/util/Makefile.in +++ b/src/util/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=./.. -myfulldir=util mydir=util ##WIN32###Windows NMAKE doesn't like @ in make variable names, and on ##WIN32### Windows we don't do the @FOO@ substitutions we do with UNIX diff --git a/src/util/collected-client-lib/Makefile.in b/src/util/collected-client-lib/Makefile.in index c583d66cc4..0776b1030e 100644 --- a/src/util/collected-client-lib/Makefile.in +++ b/src/util/collected-client-lib/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=../.. -myfulldir=util/collected-client-lib mydir=util/collected-client-lib BUILDTOP=$(REL)..$(S).. RELDIR=../util/collected-client-lib diff --git a/src/util/depfix.pl b/src/util/depfix.pl index 0ab02d776e..835188586d 100644 --- a/src/util/depfix.pl +++ b/src/util/depfix.pl @@ -34,17 +34,17 @@ $0 =~ s/^.*?(\w+)[\.\w+]*$/$1/; # A typical set of inputs, produced with srcdir=.. at top level: # -# SRCTOP = ../../../util/et/../.. +# top_srcdir = ../../../util/et/../.. # thisdir = util/et # srcdir = ../../../util/et # BUILDTOP = ../.. # libgcc file name = /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/libgcc.a # STLIBOBJS = error_message.o et_name.o com_err.o -my($SRCTOP,$thisdir,$srcdir,$BUILDTOP,$libgccpath,$STLIBOBJS) = @ARGV; +my($top_srcdir,$thisdir,$srcdir,$BUILDTOP,$libgccpath,$STLIBOBJS) = @ARGV; if (0) { - print STDERR "SRCTOP = $SRCTOP\n"; + print STDERR "top_srcdir = $top_srcdir\n"; print STDERR "BUILDTOP = $BUILDTOP\n"; print STDERR "STLIBOBJS = $STLIBOBJS\n"; } @@ -106,25 +106,25 @@ sub do_subs { s,$x/[^ ]* ,,g; s,$x/[^ ]*$,,g; } - # Recognize $(SRCTOP) and variants. - my($srct) = $SRCTOP . "/"; - $_ = strrep(" $srct", " \$(SRCTOP)/", $_); -# s, $pat, \$(SRCTOP)/,go; + # Recognize $(top_srcdir) and variants. + my($srct) = $top_srcdir . "/"; + $_ = strrep(" $srct", " \$(top_srcdir)/", $_); +# s, $pat, \$(top_srcdir)/,go; while ($srct =~ m,/[a-z][a-zA-Z0-9_.\-]*/\.\./,) { $srct =~ s,/[a-z][a-zA-Z0-9_.\-]*/\.\./,/,; - $_ = strrep(" $srct", " \$(SRCTOP)/", $_); + $_ = strrep(" $srct", " \$(top_srcdir)/", $_); } # Now try to produce pathnames relative to $(srcdir). if ($thisdir eq ".") { # blah } else { - my($pat) = " \$(SRCTOP)/$thisdir/"; + my($pat) = " \$(top_srcdir)/$thisdir/"; my($out) = " \$(srcdir)/"; $_ = strrep($pat, $out, $_); while ($pat =~ m,/[a-z][a-zA-Z0-9_.\-]*/$,) { $pat =~ s,/[a-z][a-zA-Z0-9_.\-]*/$,/,; $out .= "../"; - if ($pat ne " \$(SRCTOP)/") { + if ($pat ne " \$(top_srcdir)/") { $_ = strrep($pat, $out, $_); } } diff --git a/src/util/et/Makefile.in b/src/util/et/Makefile.in index 9dde5204d7..e585fb3fc2 100644 --- a/src/util/et/Makefile.in +++ b/src/util/et/Makefile.in @@ -2,8 +2,6 @@ prefix=@prefix@ bindir=@bindir@ datadir=@datadir@ mydatadir=$(datadir)/et -thisconfigdir=../.. -myfulldir=util/et mydir=util/et BUILDTOP=$(REL)..$(S).. RELDIR=../util/et diff --git a/src/util/et/deps b/src/util/et/deps index 2919ddbf47..718a5fd057 100644 --- a/src/util/et/deps +++ b/src/util/et/deps @@ -2,11 +2,12 @@ # Generated makefile dependencies follow. # error_message.so error_message.po $(OUTPRE)error_message.$(OBJEXT): \ - $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h com_err.h error_message.c \ + $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h com_err.h error_message.c \ error_table.h et_name.so et_name.po $(OUTPRE)et_name.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-thread.h com_err.h error_table.h \ + $(top_srcdir)/include/k5-thread.h com_err.h error_table.h \ et_name.c com_err.so com_err.po $(OUTPRE)com_err.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-thread.h com_err.c com_err.h error_table.h + $(top_srcdir)/include/k5-thread.h com_err.c com_err.h \ + error_table.h diff --git a/src/util/profile/Makefile.in b/src/util/profile/Makefile.in index 064e72d162..33a1321b76 100644 --- a/src/util/profile/Makefile.in +++ b/src/util/profile/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=../.. -myfulldir=util/profile mydir=util/profile BUILDTOP=$(REL)..$(S).. PROG_LIBPATH=-L$(TOPLIBD) $(TCL_LIBPATH) -L. diff --git a/src/util/profile/deps b/src/util/profile/deps index 2b4082cc46..837bea7b80 100644 --- a/src/util/profile/deps +++ b/src/util/profile/deps @@ -3,37 +3,38 @@ # prof_tree.so prof_tree.po $(OUTPRE)prof_tree.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_int.h prof_tree.c + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_int.h prof_tree.c prof_file.so prof_file.po $(OUTPRE)prof_file.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_file.c prof_int.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_file.c prof_int.h prof_parse.so prof_parse.po $(OUTPRE)prof_parse.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_int.h prof_parse.c + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_int.h prof_parse.c prof_get.so prof_get.po $(OUTPRE)prof_get.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_get.c prof_int.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_get.c prof_int.h prof_set.so prof_set.po $(OUTPRE)prof_set.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_int.h prof_set.c + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_int.h prof_set.c prof_err.so prof_err.po $(OUTPRE)prof_err.$(OBJEXT): \ $(COM_ERR_DEPS) prof_err.c prof_init.so prof_init.po $(OUTPRE)prof_init.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_init.c prof_int.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_init.c prof_int.h test_parse.so test_parse.po $(OUTPRE)test_parse.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - prof_int.h test_parse.c + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h prof_int.h test_parse.c test_profile.so test_profile.po $(OUTPRE)test_profile.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/profile.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - argv_parse.h prof_int.h test_profile.c + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h argv_parse.h prof_int.h \ + test_profile.c profile_tcl.so profile_tcl.po $(OUTPRE)profile_tcl.$(OBJEXT): \ $(BUILDTOP)/include/profile.h $(COM_ERR_DEPS) profile_tcl.c diff --git a/src/util/send-pr/Makefile.in b/src/util/send-pr/Makefile.in index 6d586c69e5..5ee5ae5d85 100644 --- a/src/util/send-pr/Makefile.in +++ b/src/util/send-pr/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=./../.. -myfulldir=util/send-pr mydir=util/send-pr BUILDTOP=$(REL)..$(S).. # diff --git a/src/util/ss/Makefile.in b/src/util/ss/Makefile.in index 41512aedff..d13df4282d 100644 --- a/src/util/ss/Makefile.in +++ b/src/util/ss/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=../.. -myfulldir=util/ss mydir=util/ss BUILDTOP=$(REL)..$(S).. SED = sed diff --git a/src/util/ss/deps b/src/util/ss/deps index 8bbd6aabc3..c71d18c22f 100644 --- a/src/util/ss/deps +++ b/src/util/ss/deps @@ -3,63 +3,67 @@ # invocation.so invocation.po $(OUTPRE)invocation.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/ss/ss_err.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - copyright.h invocation.c ss.h ss_internal.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h invocation.c \ + ss.h ss_internal.h help.so help.po $(OUTPRE)help.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h help.c ss.h \ - ss_internal.h + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h help.c \ + ss.h ss_internal.h execute_cmd.so execute_cmd.po $(OUTPRE)execute_cmd.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/ss/ss_err.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - copyright.h execute_cmd.c ss.h ss_internal.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h execute_cmd.c \ + ss.h ss_internal.h listen.so listen.po $(OUTPRE)listen.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h listen.c \ + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h listen.c \ ss.h ss_internal.h parse.so parse.po $(OUTPRE)parse.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h parse.c ss.h \ - ss_internal.h + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h parse.c \ + ss.h ss_internal.h error.so error.po $(OUTPRE)error.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h error.c ss.h \ - ss_internal.h + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h error.c \ + ss.h ss_internal.h prompt.so prompt.po $(OUTPRE)prompt.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h prompt.c \ + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h prompt.c \ ss.h ss_internal.h request_tbl.so request_tbl.po $(OUTPRE)request_tbl.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/ss/ss_err.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - copyright.h request_tbl.c ss.h ss_internal.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h request_tbl.c \ + ss.h ss_internal.h list_rqs.so list_rqs.po $(OUTPRE)list_rqs.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/ss/ss_err.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - copyright.h list_rqs.c ss.h ss_internal.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h list_rqs.c \ + ss.h ss_internal.h pager.so pager.po $(OUTPRE)pager.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h pager.c ss.h \ - ss_internal.h + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h pager.c \ + ss.h ss_internal.h requests.so requests.po $(OUTPRE)requests.$(OBJEXT): \ $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/ss/ss_err.h \ - $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - requests.c ss.h ss_internal.h + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h requests.c ss.h ss_internal.h data.so data.po $(OUTPRE)data.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h data.c ss.h \ - ss_internal.h + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h data.c \ + ss.h ss_internal.h mk_cmds.so mk_cmds.po $(OUTPRE)mk_cmds.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h mk_cmds.c \ + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h mk_cmds.c \ ss.h ss_internal.h utils.so utils.po $(OUTPRE)utils.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h copyright.h ss.h ss_internal.h \ - utils.c + $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h copyright.h ss.h \ + ss_internal.h utils.c options.so options.po $(OUTPRE)options.$(OBJEXT): $(BUILDTOP)/include/ss/ss_err.h \ $(COM_ERR_DEPS) copyright.h options.c ss.h -cmd_tbl.lex.o: cmd_tbl.lex.c ct.tab.h +cmd_tbl.lex.o: cmd_tbl.lex.c ct.tab.o: $(BUILDTOP)/include/ss/ss_err.h $(COM_ERR_DEPS) \ ct.tab.c ss.h ss_err.so ss_err.po $(OUTPRE)ss_err.$(OBJEXT): $(COM_ERR_DEPS) \ diff --git a/src/util/support/Makefile.in b/src/util/support/Makefile.in index 88ac6811f3..ef0b71d5a9 100644 --- a/src/util/support/Makefile.in +++ b/src/util/support/Makefile.in @@ -1,5 +1,3 @@ -thisconfigdir=../.. -myfulldir=util/support mydir=util/support BUILDTOP=$(REL)..$(S).. RELDIR=../util/support @@ -121,7 +119,7 @@ install-unix:: install-libs clean-unix:: clean-liblinks clean-libs clean-libobjs ##DOS##!if 0 -$(BUILDTOP)/include/autoconf.h: $(SRCTOP)/include/autoconf.h.in +$(BUILDTOP)/include/autoconf.h: $(top_srcdir)/include/autoconf.h.in (cd $(BUILDTOP)/include; $(MAKE) autoconf.h) ##DOS##!endif diff --git a/src/util/support/deps b/src/util/support/deps index 39af00ca9b..140c3fb61a 100644 --- a/src/util/support/deps +++ b/src/util/support/deps @@ -2,48 +2,48 @@ # Generated makefile dependencies follow. # threads.so threads.po $(OUTPRE)threads.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/fake-addrinfo.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/port-sockets.h \ - $(SRCTOP)/include/socket-utils.h cache-addrinfo.h supp-int.h \ - threads.c + $(top_srcdir)/include/fake-addrinfo.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h $(top_srcdir)/include/port-sockets.h \ + $(top_srcdir)/include/socket-utils.h cache-addrinfo.h \ + supp-int.h threads.c init-addrinfo.so init-addrinfo.po $(OUTPRE)init-addrinfo.$(OBJEXT): \ - $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/fake-addrinfo.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \ + $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/fake-addrinfo.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ + $(top_srcdir)/include/port-sockets.h $(top_srcdir)/include/socket-utils.h \ cache-addrinfo.h init-addrinfo.c errors.so errors.po $(OUTPRE)errors.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-err.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h errors.c supp-int.h + $(top_srcdir)/include/k5-err.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h errors.c supp-int.h k5buf.so k5buf.po $(OUTPRE)k5buf.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-buf.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h k5buf-int.h k5buf.c + $(top_srcdir)/include/k5-buf.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h k5buf-int.h k5buf.c gmt_mktime.so gmt_mktime.po $(OUTPRE)gmt_mktime.$(OBJEXT): \ - $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/k5-gmt_mktime.h \ + $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/k5-gmt_mktime.h \ gmt_mktime.c fake-addrinfo.so fake-addrinfo.po $(OUTPRE)fake-addrinfo.$(OBJEXT): \ - $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/fake-addrinfo.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - $(SRCTOP)/include/port-sockets.h $(SRCTOP)/include/socket-utils.h \ + $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/fake-addrinfo.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ + $(top_srcdir)/include/port-sockets.h $(top_srcdir)/include/socket-utils.h \ cache-addrinfo.h fake-addrinfo.c supp-int.h utf8.so utf8.po $(OUTPRE)utf8.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ - $(SRCTOP)/include/k5-utf8.h supp-int.h utf8.c + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ + $(top_srcdir)/include/k5-utf8.h supp-int.h utf8.c utf8_conv.so utf8_conv.po $(OUTPRE)utf8_conv.$(OBJEXT): \ - $(BUILDTOP)/include/autoconf.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h $(SRCTOP)/include/k5-utf8.h \ + $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h $(top_srcdir)/include/k5-utf8.h \ supp-int.h utf8_conv.c strlcpy.so strlcpy.po $(OUTPRE)strlcpy.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ strlcpy.c printf.so printf.po $(OUTPRE)printf.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ printf.c mkstemp.so mkstemp.po $(OUTPRE)mkstemp.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ mkstemp.c t_k5buf.so t_k5buf.po $(OUTPRE)t_k5buf.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-buf.h $(SRCTOP)/include/k5-platform.h \ - $(SRCTOP)/include/k5-thread.h k5buf-int.h t_k5buf.c + $(top_srcdir)/include/k5-buf.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-thread.h k5buf-int.h t_k5buf.c t_unal.so t_unal.po $(OUTPRE)t_unal.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \ - $(SRCTOP)/include/k5-platform.h $(SRCTOP)/include/k5-thread.h \ + $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \ t_unal.c |
