aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:33 +0200
committerGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:33 +0200
commit27053b1befc8380404f76c2c03c08eb3a7b0692d (patch)
tree10a748b4785cce56ed4b272844003611a489cc38 /Makefile.in
parentImported Upstream version 0.10 (diff)
downloadkrb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.tar.gz
krb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.tar.bz2
krb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.zip
Imported Upstream version 0.11
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 15 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 37cd4c4..c2314a8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -40,7 +40,8 @@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
ylwrap
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/m4/compiler-flags.m4 $(top_srcdir)/configure.ac
+ $(top_srcdir)/m4/compiler-flags.m4 \
+ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
@@ -95,6 +96,8 @@ DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
+DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
+DOC_USER_FORMATS = @DOC_USER_FORMATS@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
@@ -118,6 +121,7 @@ GMSGFMT = @GMSGFMT@
GREP = @GREP@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_LIBS = @GTK_LIBS@
+HELP_DIR = @HELP_DIR@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -159,6 +163,7 @@ NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
+OMF_DIR = @OMF_DIR@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
@@ -241,13 +246,20 @@ top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
NULL =
-SUBDIRS = secmem gtksecentry src po etpo icons preferences
+SUBDIRS = secmem gtksecentry src po etpo icons preferences help
EXTRA_DIST = \
krb5-auth-dialog.spec \
MAINTAINERS \
+ gnome-doc-utils.make \
+ $(NULL)
+
+DISTCLEANFILES = \
+ intltool-extract \
+ intltool-merge \
+ intltool-update \
+ gnome-doc-utils.make \
$(NULL)
-DISTCLEANFILES = intltool-extract intltool-merge intltool-update
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
bgstack15