diff options
author | Stefan Siegl <stesie@brokenpipe.de> | 2006-01-30 23:12:04 +0000 |
---|---|---|
committer | Stefan Siegl <stesie@brokenpipe.de> | 2006-01-30 23:12:04 +0000 |
commit | b0cc992cef964c7096ace49938f23aadd07938bb (patch) | |
tree | 49353637cffe913c743ffa27f6d659cbaf8d4745 /example-24 | |
parent | 1a081355385917e2f7af6ac13a8fed807d3b4bf0 (diff) |
Makefiles adjusted because of file movements (new include and src directory)
Diffstat (limited to 'example-24')
-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 |