renamed the extras directory to be lib.
This commit is contained in:
parent
6294ea7052
commit
9651a717cf
|
@ -1,4 +1,4 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
SUBDIRS = src scheme doc extras benchmarks
|
||||
SUBDIRS = src scheme doc lib benchmarks
|
||||
EXTRA_DIST = README COPYING GPL-3 ACKNOWLEDGMENTS
|
||||
dist_doc_DATA=README COPYING GPL-3 ACKNOWLEDGMENTS
|
||||
|
|
|
@ -183,7 +183,7 @@ target_vendor = @target_vendor@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
SUBDIRS = src scheme doc extras benchmarks
|
||||
SUBDIRS = src scheme doc lib benchmarks
|
||||
EXTRA_DIST = README COPYING GPL-3 ACKNOWLEDGMENTS
|
||||
dist_doc_DATA = README COPYING GPL-3 ACKNOWLEDGMENTS
|
||||
all: config.h
|
||||
|
|
|
@ -8296,7 +8296,7 @@ done
|
|||
|
||||
ac_config_headers="$ac_config_headers config.h"
|
||||
|
||||
ac_config_files="$ac_config_files Makefile src/Makefile scheme/Makefile doc/Makefile extras/Makefile benchmarks/Makefile"
|
||||
ac_config_files="$ac_config_files Makefile src/Makefile scheme/Makefile doc/Makefile lib/Makefile benchmarks/Makefile"
|
||||
|
||||
cat >confcache <<\_ACEOF
|
||||
# This file is a shell script that caches the results of configure
|
||||
|
@ -8895,7 +8895,7 @@ do
|
|||
"src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
|
||||
"scheme/Makefile") CONFIG_FILES="$CONFIG_FILES scheme/Makefile" ;;
|
||||
"doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
|
||||
"extras/Makefile") CONFIG_FILES="$CONFIG_FILES extras/Makefile" ;;
|
||||
"lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
|
||||
"benchmarks/Makefile") CONFIG_FILES="$CONFIG_FILES benchmarks/Makefile" ;;
|
||||
|
||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||
|
|
|
@ -88,6 +88,6 @@ AC_FUNC_STRFTIME
|
|||
AC_FUNC_STRTOD
|
||||
AC_CHECK_FUNCS([bzero gettimeofday memmove memset munmap setenv sqrt strerror])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_FILES(Makefile src/Makefile scheme/Makefile doc/Makefile extras/Makefile benchmarks/Makefile)
|
||||
AC_CONFIG_FILES(Makefile src/Makefile scheme/Makefile doc/Makefile lib/Makefile benchmarks/Makefile)
|
||||
AC_OUTPUT #(Makefile src/Makefile scheme/Makefile doc/Makefile)
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ POST_UNINSTALL = :
|
|||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = extras
|
||||
subdir = lib
|
||||
DIST_COMMON = $(dist_libstreams_DATA) $(dist_pkglib_DATA) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
|
@ -172,9 +172,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign extras/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign extras/Makefile
|
||||
$(AUTOMAKE) --foreign lib/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
|
@ -1 +1 @@
|
|||
1153
|
||||
1154
|
||||
|
|
Loading…
Reference in New Issue