diff options
author | Gerald Carter <jerry@samba.org> | 2003-08-20 21:52:52 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-08-20 21:52:52 +0000 |
commit | a750624f4d005e2bc415e86a38947a7fa10d0cb9 (patch) | |
tree | 206472fd4bc1af26969b85e2ac19dafe82774eff /examples/LDAP/smbldap-tools/Makefile | |
parent | 8bfe26b62db2e671b143d93a5428f8fb64a9df05 (diff) | |
download | samba-a750624f4d005e2bc415e86a38947a7fa10d0cb9.tar.gz samba-a750624f4d005e2bc415e86a38947a7fa10d0cb9.tar.bz2 samba-a750624f4d005e2bc415e86a38947a7fa10d0cb9.zip |
checlking in initial version of 2.2 scripts so I can start updating them
(This used to be commit 766a5070d58ada7a871a7fab45b5f7e203264952)
Diffstat (limited to 'examples/LDAP/smbldap-tools/Makefile')
-rw-r--r-- | examples/LDAP/smbldap-tools/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/LDAP/smbldap-tools/Makefile b/examples/LDAP/smbldap-tools/Makefile new file mode 100644 index 0000000000..3e5eac427d --- /dev/null +++ b/examples/LDAP/smbldap-tools/Makefile @@ -0,0 +1,35 @@ +PACKAGE=smbldap-tools +RELEASE=0.7 +DESTDIR = $(PACKAGE)-$(RELEASE) + +dist: distclean $(DESTDIR).tgz + +$(DESTDIR).tgz: .diststamp + rm -rf $(DESTDIR) + mkdir $(DESTDIR) + # copy files + cp CONTRIBUTORS $(DESTDIR) + cp COPYING $(DESTDIR) + cp ChangeLog $(DESTDIR) + cp FILES $(DESTDIR) + cp INSTALL $(DESTDIR) + cp README $(DESTDIR) + cp TODO $(DESTDIR) + cp INFRASTRUCTURE $(DESTDIR) + tar cf mkntpwd.tar mkntpwd + gzip mkntpwd.tar + cp mkntpwd.tar.gz $(DESTDIR) + cp smbldap-*.pl $(DESTDIR) + cp smbldap_*.pm $(DESTDIR) + # copy directories + tar cvzf $(DESTDIR).tgz $(DESTDIR) + rm -rf $(DESTDIR) + touch .diststamp + +.diststamp: + +distclean: + rm -f *~ + rm -f $(DESTDIR).tgz + rm -f mkntpwd.tar.gz + |