diff options
author | Michael Adam <obnox@samba.org> | 2008-05-19 00:54:45 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-05-19 01:23:06 +0200 |
commit | aef2828831b3762b85a0a261fd99b74c68e3a4c9 (patch) | |
tree | 9112789d68597ba167bd44f460d32c217716608a | |
parent | cf6f4cfefa88565bebaf7e14ca0836c80b9c0512 (diff) | |
download | samba-aef2828831b3762b85a0a261fd99b74c68e3a4c9.tar.gz samba-aef2828831b3762b85a0a261fd99b74c68e3a4c9.tar.bz2 samba-aef2828831b3762b85a0a261fd99b74c68e3a4c9.zip |
build: remove the "delheaders" target.
Michael
(This used to be commit 0fe47c3c76eb15fee62115f7f21b77bd9e3236c7)
-rw-r--r-- | source3/Makefile.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index baec0e6cf7..a38535101e 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2280,7 +2280,9 @@ uninstallpammodules: # Toplevel clean files TOPFILES=dynconfig.o -clean: delheaders +clean: + -rm -f include/build_env.h + -rm -f smbd/build_options.c -rm -f $(PRECOMPILED_HEADER) -rm -f core */*~ *~ \ */*.o */*/*.o */*/*/*.o \ @@ -2303,11 +2305,6 @@ proto_exists: include/build_env.h \ smbd/build_options.c @touch proto_exists -delheaders: - @echo Removing prototype headers - @rm -f include/build_env.h \ - smbd/build_options.c - include/build_env.h: script/build_env.sh @echo Building include/build_env.h @$(SHELL) $(srcdir)/script/build_env.sh $(srcdir) $(builddir) $(CC) \ |