diff options
author | Alan Brault <alan.brault@incruentatus.net> | 2010-12-09 19:42:11 -0500 |
---|---|---|
committer | Alan Brault <alan.brault@incruentatus.net> | 2010-12-09 19:42:11 -0500 |
commit | 6b031a2ba7c024b674a9736a87a9dedde279beab (patch) | |
tree | 26083a24ce525ee29bc3146ecd1ae63436e9be92 /Makefile.in | |
parent | 1768860358ca4d1f520821f754750a2781abfce6 (diff) | |
download | NetNuke2-6b031a2ba7c024b674a9736a87a9dedde279beab.tar.gz |
Enable cross compiling support to NetNuke
Add buildconf to make the process of rebuilding all the bootstrapping files easier
Add files AUTHORS, INSTALL, ChangeLog, NEWS, COPYING (renamed LICENSE) and compile to satisfy automake
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index e5b0617..fd33a4e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -36,8 +36,9 @@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure config.guess config.sub depcomp \ - install-sh ltmain.sh missing + $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ + TODO compile config.guess config.sub depcomp install-sh \ + ltmain.sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ @@ -212,7 +213,6 @@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign SUBDIRS = libsysfs src all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -224,15 +224,15 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile + $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ |