summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Siegl <stesie@brokenpipe.de>2006-01-30 23:12:04 +0000
committerStefan Siegl <stesie@brokenpipe.de>2006-01-30 23:12:04 +0000
commitb0cc992cef964c7096ace49938f23aadd07938bb (patch)
tree49353637cffe913c743ffa27f6d659cbaf8d4745
parent1a081355385917e2f7af6ac13a8fed807d3b4bf0 (diff)
Makefiles adjusted because of file movements (new include and src directory)
-rw-r--r--example-22/Makefile.am4
-rw-r--r--example-23/Makefile.am4
-rw-r--r--example-24/Makefile.am6
-rw-r--r--example/Makefile.am4
4 files changed, 10 insertions, 8 deletions
diff --git a/example-22/Makefile.am b/example-22/Makefile.am
index c700453d7..902910dca 100644
--- a/example-22/Makefile.am
+++ b/example-22/Makefile.am
@@ -6,5 +6,5 @@ fusexmp_SOURCES = fusexmp.c
null_SOURCES = null.c
hello_SOURCES = hello.c
-LDADD = ../libfuse.la
-AM_CPPFLAGS = -DFUSE_USE_VERSION=22 -I$(top_srcdir)
+LDADD = ../src/libfuse.la
+AM_CPPFLAGS = -DFUSE_USE_VERSION=22 -I$(top_srcdir) -I$(top_srcdir)/include
diff --git a/example-23/Makefile.am b/example-23/Makefile.am
index 6df9c5820..44f1bfe50 100644
--- a/example-23/Makefile.am
+++ b/example-23/Makefile.am
@@ -7,5 +7,5 @@ fusexmp_fh_SOURCES = fusexmp_fh.c
null_SOURCES = null.c
hello_SOURCES = hello.c
-LDADD = ../libfuse.la
-AM_CPPFLAGS = -DFUSE_USE_VERSION=23 -I$(top_srcdir)
+LDADD = ../src/libfuse.la
+AM_CPPFLAGS = -DFUSE_USE_VERSION=23 -I$(top_srcdir) -I$(top_srcdir)/include
diff --git a/example-24/Makefile.am b/example-24/Makefile.am
index 8d62e9d07..8a875b8df 100644
--- a/example-24/Makefile.am
+++ b/example-24/Makefile.am
@@ -1,10 +1,12 @@
## Process this file with automake to produce Makefile.in
-noinst_PROGRAMS = fusexmp fusexmp_fh null hello hello_ll
+noinst_PROGRAMS = fusexmp fusexmp_fh null hello
+# low-level api not supported: hello_ll
fusexmp_SOURCES = fusexmp.c
fusexmp_fh_SOURCES = fusexmp_fh.c
null_SOURCES = null.c
hello_SOURCES = hello.c
-LDADD = ../lib/libfuse.la -lpthread
+LDADD = ../src/libfuse.la
+AM_CPPFLAGS = -DFUSE_USE_VERSION=23 -I$(top_srcdir) -I$(top_srcdir)/include
diff --git a/example/Makefile.am b/example/Makefile.am
index 69bfa3af3..d303344d9 100644
--- a/example/Makefile.am
+++ b/example/Makefile.am
@@ -6,5 +6,5 @@ fusexmp_SOURCES = fusexmp.c
null_SOURCES = null.c
hello_SOURCES = hello.c
-LDADD = ../libfuse.la
-AM_CPPFLAGS = -I$(top_srcdir)
+LDADD = ../src/libfuse.la
+AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include