diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-09-28 12:21:06 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-09-28 12:25:47 +0200 |
commit | 166f849a5155d821706942e30a6cb7a4724d2348 (patch) | |
tree | c20b86450f69c2fde49c0664888c6dd311464270 /source4/Makefile | |
parent | 4a230b5e6ccbd7e8ac3dce875014715b733bb210 (diff) | |
download | samba-166f849a5155d821706942e30a6cb7a4724d2348.tar.gz samba-166f849a5155d821706942e30a6cb7a4724d2348.tar.bz2 samba-166f849a5155d821706942e30a6cb7a4724d2348.zip |
make: Use $(base_srcdirs) in 'make clean' rather than keeping a separate
list.
Diffstat (limited to 'source4/Makefile')
-rw-r--r-- | source4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile index 959d0f43c7..12d39da9bd 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -153,7 +153,7 @@ include $(srcdir)/static_deps.mk endif clean:: - @find ../libds ../lib ../libcli ../librpc ../libgpo ../nsswitch -name '*.o' -o -name '*.ho' | xargs rm -f + @find $(base_srcdirs) -name '*.o' -o -name '*.ho' | xargs rm -f PUBLIC_HEADERS += ./version.h |