diff options
author | toni <matzeton@googlemail.com> | 2016-07-21 00:36:14 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2016-07-21 01:00:25 +0200 |
commit | 73beaec02c63b32d1e9d573c9b1cd6a5bf0b30d7 (patch) | |
tree | 1465ba52de262fc39e336fa51fa26983ba2e30df /Makefile.in | |
parent | 1cf41329487303dd7ee3a7f99b631b9f580ed132 (diff) |
clock_gettime is now optional..
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 4bd49ba..cee7de5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -81,9 +81,8 @@ subdir = . DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) build/ar-lib \ build/compile build/config.guess build/config.sub \ - build/depcomp build/install-sh build/missing \ - $(top_srcdir)/build/ar-lib $(top_srcdir)/build/compile \ - $(top_srcdir)/build/config.guess \ + build/install-sh build/missing $(top_srcdir)/build/ar-lib \ + $(top_srcdir)/build/compile $(top_srcdir)/build/config.guess \ $(top_srcdir)/build/config.sub $(top_srcdir)/build/install-sh \ $(top_srcdir)/build/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 @@ -228,6 +227,7 @@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ @@ -301,7 +301,7 @@ all: all-recursive .SUFFIXES: am--refresh: Makefile @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -328,9 +328,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck -$(top_srcdir)/configure: $(am__configure_deps) +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): |