diff options
-rw-r--r-- | example-22/Makefile.am | 4 | ||||
-rw-r--r-- | example-23/Makefile.am | 4 | ||||
-rw-r--r-- | example-24/Makefile.am | 6 | ||||
-rw-r--r-- | example/Makefile.am | 4 |
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 |