diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-12-23 23:24:12 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-12-23 23:24:12 +0100 |
commit | e94e7f82798db59849cb1dc6a99b414adc11594e (patch) | |
tree | ce32d7c20da1c41778bee7640ac96b489f86061d /source4/Makefile | |
parent | dcc4081f75f0d0c51878385477f7738f49a761dd (diff) | |
download | samba-e94e7f82798db59849cb1dc6a99b414adc11594e.tar.gz samba-e94e7f82798db59849cb1dc6a99b414adc11594e.tar.bz2 samba-e94e7f82798db59849cb1dc6a99b414adc11594e.zip |
s4: Fix make clean to remove gen_ndr objects.
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 442a62ef62..fff2dbf544 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -144,7 +144,7 @@ include $(srcdir)/static_deps.mk endif clean:: - @find ../lib ../libcli -name '*.o' -o -name '*.ho' | xargs rm -f + @find ../lib ../libcli ../librpc ../nsswitch -name '*.o' -o -name '*.ho' | xargs rm -f DEFAULT_HEADERS = $(srcdir)/../lib/util/dlinklist.h \ $(srcdir)/version.h |