From ecfa5263ab5b19a58d53a7116fb079f3b956b918 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 5 Dec 2008 10:55:36 +0000 Subject: * Implement ioctl support. On high level interface only "restricted" ioctls are supported (which are defined with the _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls will only be allwed to CUSE (Character Device in Userspace) servers. Patch by Tejun Heo --- example/Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'example/Makefile.am') diff --git a/example/Makefile.am b/example/Makefile.am index 91f33cc..43b195d 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,7 +1,13 @@ ## Process this file with automake to produce Makefile.in AM_CPPFLAGS = -I$(top_srcdir)/include -D_FILE_OFFSET_BITS=64 -D_REENTRANT -noinst_PROGRAMS = fusexmp fusexmp_fh null hello hello_ll +noinst_HEADERS = fioc.h +noinst_PROGRAMS = fusexmp fusexmp_fh null hello hello_ll fioc fioclient LDADD = ../lib/libfuse.la @libfuse_libs@ fusexmp_fh_LDADD = ../lib/libfuse.la ../lib/libulockmgr.la @libfuse_libs@ + +fioclient_CPPFLAGS = +fioclient_LDFLAGS = +fioclient_LDADD = + -- cgit v1.2.3