diff options
author | Matthew Booth <mbooth@redhat.com> | 2009-07-03 11:52:50 +0100 |
---|---|---|
committer | Matthew Booth <mbooth@redhat.com> | 2009-07-03 16:16:51 +0100 |
commit | 349814e9d912c4f372b8fbdfb10b03749911021f (patch) | |
tree | 7168b6ee4dadd363a28a73e2a5ff26799395d75c /haskell | |
parent | 5f9cb51f11879ece8b921d833850505d7e57d339 (diff) | |
download | libguestfs-349814e9d912c4f372b8fbdfb10b03749911021f.tar.gz libguestfs-349814e9d912c4f372b8fbdfb10b03749911021f.tar.xz libguestfs-349814e9d912c4f372b8fbdfb10b03749911021f.zip |
Make it possible to build in a separate directory
This patch allows you to do:
mkdir build
cd build
../configure ...
make
This will output all generated files to the build directory. Given that
autogen automatically runs configure, you can also do:
BUILDDIR=./build ./autogen.sh
which will do the right thing.
Also:
* Fix a dependency bug which means that guestfs_protocol.h
isn't automatically rebuilt.
* Re-running autogen.sh with no arguments won't blow away your previous
configure arguments.
Diffstat (limited to 'haskell')
-rw-r--r-- | haskell/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haskell/Makefile.am b/haskell/Makefile.am index 3cb721fb..dcaf18a5 100644 --- a/haskell/Makefile.am +++ b/haskell/Makefile.am @@ -30,7 +30,7 @@ TESTS = run-bindtests Guestfs005Load Guestfs010Launch Guestfs050LVCreate check_DATA = Bindtests -GHCFLAGS = -I$(abs_top_builddir)/src -L$(abs_top_builddir)/src/.libs +GHCFLAGS = -I$(top_builddir)/src -L$(top_builddir)/src/.libs Bindtests: Bindtests.hs Guestfs.hs $(GHC) $(GHCFLAGS) -main-is $(shell basename $@) --make -o $@ $< -lguestfs @@ -44,4 +44,4 @@ Guestfs010Launch: Guestfs010Launch.hs Guestfs.hs Guestfs050LVCreate: Guestfs050LVCreate.hs Guestfs.hs $(GHC) $(GHCFLAGS) -main-is $(shell basename $@) --make -o $@ $< -lguestfs -endif
\ No newline at end of file +endif |