d551212a793432d752113638bacbf23dd1bd2cb6
[captive.git] / src / client / fuse / Makefile.am
1 # $Id$
2 # automake source for the fuse module for fuse Makefile 
3 # Copyright (C) 2005 Jan Kratochvil <project-captive@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 include $(top_srcdir)/Makefile-head.am
20 include $(top_srcdir)/src/libcaptive/Makefile-libcaptive.am
21
22 mount_captive_SOURCES= \
23                 op_statfs.c \
24                 op_statfs.h \
25                 op_fsync.c \
26                 op_fsync.h \
27                 op_fsyncdir.c \
28                 op_fsyncdir.h \
29                 op_opendir.c \
30                 op_opendir.h \
31                 op_readdir.c \
32                 op_readdir.h \
33                 op_releasedir.c \
34                 op_releasedir.h \
35                 op_open.c \
36                 op_open.h \
37                 op_read.c \
38                 op_read.h \
39                 op_release.c \
40                 op_release.h \
41                 op_getattr.c \
42                 op_getattr.h \
43                 op_mknod.c \
44                 op_mknod.h \
45                 op_unlink.c \
46                 op_unlink.h \
47                 op_mkdir.c \
48                 op_mkdir.h \
49                 op_rmdir.c \
50                 op_rmdir.h \
51                 op_chmod.c \
52                 op_chmod.h \
53                 op_truncate.c \
54                 op_truncate.h \
55                 op_write.c \
56                 op_write.h \
57                 op_rename.c \
58                 op_rename.h \
59                 op_utime.c \
60                 op_utime.h \
61                 gnomevfsresult.c \
62                 gnomevfsresult.h \
63                 gnomevfsfileinfo.c \
64                 gnomevfsfileinfo.h \
65                 main.c \
66                 main.h
67 mount_captive_CFLAGS=                   $(GNOME_VFS_CFLAGS) $(FUSE_CFLAGS)
68 mount_captive_LDADD =$(captive_library) $(GNOME_VFS_LIBS)   $(FUSE_LIBS)   $(INTLLIBS)
69 mount_captive_LDFLAGS=$(READLINE_LDFLAGS)
70
71 mount_captive_CFLAGS+=-DLIBEXECDIR="$(libexecdir)"
72 mount_captive_CFLAGS+=-DVARLIBCAPTIVEDIR="$(localstatedir)/lib/$(PACKAGE)"
73
74 if ENABLE_FUSE
75 if ENABLE_SBIN_MOUNT
76 mount_captive_cond=mount.captive
77 initd_SCRIPTS_cond=captive
78
79 install-exec-hook:
80         $(mkinstalldirs) $(DESTDIR)$(enable_sbin_mountdir)
81         IFS=:; \
82         enable_sbin_mount_fs="$(enable_sbin_mount_fs)"; \
83         for fs in $$enable_sbin_mount_fs; do \
84                 if test $$fs != no; then \
85                         $(RM) $(DESTDIR)$(enable_sbin_mountdir)/mount.captive-$$fs; \
86                         $(LN_S) mount.captive $(DESTDIR)$(enable_sbin_mountdir)/mount.captive-$$fs; \
87                 fi; \
88                 done
89
90 else
91 install-exec-hook:
92         @true
93
94 endif
95 else
96 install-exec-hook:
97         @true
98
99 endif
100 enable_sbin_mount_PROGRAMS=$(mount_captive_cond)
101
102 EXTRA_DIST+=mount.captive.pod.pl.in
103 CLEANFILES+=mount.captive.pod mount.captive.1
104
105 if ENABLE_MAN_PAGES
106 if ENABLE_FUSE
107 if ENABLE_SBIN_MOUNT
108 mount_captive_man_cond=mount.captive.8
109 endif
110 endif
111 endif
112 man_MANS=$(mount_captive_man_cond)
113
114 initd_SCRIPTS=$(initd_SCRIPTS_cond)
115 EXTRA_DIST+=captive.init
116 CLEANFILES+=captive
117 captive: captive.init
118         $(LN_S) $< $@
119