From 6283f55ea1b91e680386388c17d14b89e344fa8d Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Sat, 4 Sep 2010 13:26:23 -0700 Subject: Support custom build directories and move includes One of the neat tricks an autoconf style project is capable of is allow configurion/building in a directory other than the source directory. The major advantage to this is that you can build the project various different ways while making changes in a single source tree. For example, this project is designed to work on various different Linux distributions each of which work slightly differently. This means that changes need to verified on each of those supported distributions perferably before the change is committed to the public git repo. Using nfs and custom build directories makes this much easier. I now have a single source tree in nfs mounted on several different systems each running a supported distribution. When I make a change to the source base I suspect may break things I can concurrently build from the same source on all the systems each in their own subdirectory. wget -c http://github.com/downloads/behlendorf/zfs/zfs-x.y.z.tar.gz tar -xzf zfs-x.y.z.tar.gz cd zfs-x-y-z ------------------------- run concurrently ---------------------- mkdir ubuntu mkdir fedora mkdir debian mkdir rhel6 cd ubuntu cd fedora cd debian cd rhel6 ../configure ../configure ../configure ../configure make make make make make check make check make check make check This change also moves many of the include headers from individual incude/sys directories under the modules directory in to a single top level include directory. This has the advantage of making the build rules cleaner and logically it makes a bit more sense. --- lib/libspl/Makefile.am | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'lib/libspl/Makefile.am') diff --git a/lib/libspl/Makefile.am b/lib/libspl/Makefile.am index ad91ae851..f95e42bf0 100644 --- a/lib/libspl/Makefile.am +++ b/lib/libspl/Makefile.am @@ -6,28 +6,28 @@ SUBDIRS = include $(TARGET_ASM_DIR) DIST_SUBDIRS = include asm-generic asm-i386 asm-x86_64 DEFAULT_INCLUDES += \ - -I${top_srcdir}/lib/libspl/include + -I$(top_srcdir)/lib/libspl/include AM_CCASFLAGS = \ - -I${top_srcdir}/lib/libspl/include + -I$(top_srcdir)/lib/libspl/include lib_LTLIBRARIES = libspl.la libspl_la_LDFLAGS = -lrt libspl_la_SOURCES = \ - ${top_srcdir}/lib/libspl/getexecname.c \ - ${top_srcdir}/lib/libspl/gethrtime.c \ - ${top_srcdir}/lib/libspl/gethrestime.c \ - ${top_srcdir}/lib/libspl/getmntany.c \ - ${top_srcdir}/lib/libspl/list.c \ - ${top_srcdir}/lib/libspl/mkdirp.c \ - ${top_srcdir}/lib/libspl/strlcat.c \ - ${top_srcdir}/lib/libspl/strlcpy.c \ - ${top_srcdir}/lib/libspl/strnlen.c \ - ${top_srcdir}/lib/libspl/timestamp.c \ - ${top_srcdir}/lib/libspl/zone.c \ - ${top_srcdir}/lib/libspl/xdr.c \ - ${top_srcdir}/lib/libspl/${TARGET_ASM_DIR}/atomic.S \ - ${top_srcdir}/lib/libspl/include/sys/list.h \ - ${top_srcdir}/lib/libspl/include/sys/list_impl.h + $(top_srcdir)/lib/libspl/getexecname.c \ + $(top_srcdir)/lib/libspl/gethrtime.c \ + $(top_srcdir)/lib/libspl/gethrestime.c \ + $(top_srcdir)/lib/libspl/getmntany.c \ + $(top_srcdir)/lib/libspl/list.c \ + $(top_srcdir)/lib/libspl/mkdirp.c \ + $(top_srcdir)/lib/libspl/strlcat.c \ + $(top_srcdir)/lib/libspl/strlcpy.c \ + $(top_srcdir)/lib/libspl/strnlen.c \ + $(top_srcdir)/lib/libspl/timestamp.c \ + $(top_srcdir)/lib/libspl/zone.c \ + $(top_srcdir)/lib/libspl/xdr.c \ + $(top_srcdir)/lib/libspl/$(TARGET_ASM_DIR)/atomic.S \ + $(top_srcdir)/lib/libspl/include/sys/list.h \ + $(top_srcdir)/lib/libspl/include/sys/list_impl.h -- cgit v1.2.3