forked from facebookarchive/nfusr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
20 lines (17 loc) · 693 Bytes
/
Copy pathMakefile.am
File metadata and controls
20 lines (17 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
EXTRA_DIST=bootstrap LICENSE PATENTS
# mount helper scripts must go in /sbin, regardless of
# prefix
root_sbindir="/sbin"
bin_PROGRAMS = nfusr
nfusr_SOURCES = ClientStats.cpp fuse_optype.cpp logger.cpp NfsClient.cpp \
NfsConnection.cpp NfsConnectionPool.cpp nfusr.cpp \
NfsCachedClient.cpp \
ClientStats.h InodeInternal.h NfsClient.h NfsConnectionPool.h \
fuse_optype.h logger.h NfsConnection.h RpcContext.h \
NfsCachedClient.h
root_sbin_SCRIPTS = mount.nfusr
CLEANFILES=mount.nfusr mount.nfusr-t
EXTRA_DIST+=mount.nfusr.in
mount.nfusr: mount.nfusr.in
@rm -f $@-t $@
@sed -e 's|@bindir[@]|$(bindir)|g' <$< >$@-t && chmod a-w $@-t && mv $@-t $@