diff options
Diffstat (limited to 'example-24/Makefile.am')
-rw-r--r-- | example-24/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
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 |