diff options
author | Shirish Pargaonkar <shirishpargaonkar@gmail.com> | 2011-08-25 14:16:23 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2011-08-25 14:16:23 -0400 |
commit | 99146a02be1ec098f7802ee8e6bb8d31b01cf344 (patch) | |
tree | fd3356ab534576bf9fd22a7ecdfa2d9f0f2f8c0b | |
parent | 06678a909ee842193b95b140fb198f85e3addfef (diff) | |
download | cifs-utils-99146a02be1ec098f7802ee8e6bb8d31b01cf344.tar.gz cifs-utils-99146a02be1ec098f7802ee8e6bb8d31b01cf344.tar.bz2 cifs-utils-99146a02be1ec098f7802ee8e6bb8d31b01cf344.zip |
cifsacl: Add make directives for setcifsacl (try #2)
Add Makefile directives for setcifsacl.
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3ec6b7e..7d4bdea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,11 +57,18 @@ getcifsacl_SOURCES = getcifsacl.c getcifsacl_LDADD = -lkeyutils $(WINB_LDADD) man_MANS += getcifsacl.8 +sbin_PROGRAMS += setcifsacl +setcifsacl_SOURCES = setcifsacl.c +setcifsacl_LDADD = -lkeyutils $(WINB_LDADD) +man_MANS += setcifsacl.8 + getcifsacl.8: getcifsacl.8.in $(SED) 's,[@]sbindir@,$(sbindir),' $(srcdir)/$@.in > $@-t && mv $@-t $@ +setcifsacl.8: setcifsacl.8.in + $(SED) 's,[@]sbindir@,$(sbindir),' $(srcdir)/$@.in > $@-t && mv $@-t $@ endif clean-local-aclprogs: if CONFIG_CIFSACL - rm -f getcifsacl.8 getcifsacl.8-t + rm -f getcifsacl.8 getcifsacl.8-t setcifsacl.8 setcifsacl.8-t endif |