diff options
author | Michael Adam <obnox@samba.org> | 2008-08-21 10:50:49 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-08-21 12:16:05 +0200 |
commit | fdb4fcf30c02125ad3a76ab9101063d6b591b137 (patch) | |
tree | 25fe27077c6bbec4f9ca24a6666fa659a7b3b414 /source3/Makefile.in | |
parent | fb0b833001d203dc43bb9f415e9792812194655a (diff) | |
download | samba-fdb4fcf30c02125ad3a76ab9101063d6b591b137.tar.gz samba-fdb4fcf30c02125ad3a76ab9101063d6b591b137.tar.xz samba-fdb4fcf30c02125ad3a76ab9101063d6b591b137.zip |
build: add [clean_]libsmbclient_examples targets to top level Makefile
Michael
(This used to be commit b476400f0afcaf4e1a37b9f0b358f01dc7a194be)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 923a6007105..c77404b55ea 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2720,3 +2720,14 @@ valgrindtest:: all torture timelimit SMBD_VALGRIND="xterm -n smbd -e valgrind -q --db-attach=yes --num-callers=30" \ VALGRIND="valgrind -q --num-callers=30 --log-file=${selftest_prefix}/valgrind.log" \ PERL="$(PERL)" $(srcdir)/script/tests/selftest.sh ${selftest_prefix} all "${smbtorture4_path}" + + +## +## Examples: +## + +libsmbclient_examples: + $(MAKE) -C ../examples/libsmbclient -f Makefile.internal + +clean_libsmbclient_examples: + $(MAKE) -C ../examples/libsmbclient -f Makefile.internal clean |