diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-03 06:43:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:31:04 -0500 |
commit | 9c913ef5925c968d17e8656177cfce58cbace00d (patch) | |
tree | 603c2e05e34c0e336a8219f854a5d1e66455dae3 /source4/build/smb_build/makefile.pm | |
parent | db28a320edb7cd3a24133f1054bb74c445388289 (diff) | |
download | samba-9c913ef5925c968d17e8656177cfce58cbace00d.tar.gz samba-9c913ef5925c968d17e8656177cfce58cbace00d.tar.bz2 samba-9c913ef5925c968d17e8656177cfce58cbace00d.zip |
r8994: Clean up some more autogenerated files so I can predict when I'm going to
break the build...
(This used to be commit 1f31414f372bf930db0a65531e85ab5cb9a34723)
Diffstat (limited to 'source4/build/smb_build/makefile.pm')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 77c6d07a5d..70afa29955 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -248,11 +248,10 @@ sub _prepare_obj_list($$) my ($var,$ctx) = @_; my $tmplist = array2oneperline($ctx->{OBJ_LIST}); + return "" if ($tmplist eq ""); return << "__EOD__"; -# $var $ctx->{NAME} OBJ LIST $var\_$ctx->{NAME}_OBJS =$tmplist - __EOD__ } @@ -261,6 +260,7 @@ sub _prepare_cflags($$) my ($var,$ctx) = @_; my $tmplist = array2oneperline($ctx->{CFLAGS}); + return "" if ($tmplist eq ""); return << "__EOD__"; $var\_$ctx->{NAME}_CFLAGS =$tmplist @@ -298,7 +298,6 @@ sub _prepare_shared_library_rule($) $output = << "__EOD__"; LIBRARY_$ctx->{NAME}_DEPEND_LIST =$tmpdepend -# LIBRARY_$ctx->{NAME}_SHARED_LINK_LIST =$tmpshlink LIBRARY_$ctx->{NAME}_SHARED_LINK_FLAGS =$tmpshflag # @@ -502,9 +501,13 @@ clean: delheaders @echo Removing generated files @-rm -rf librpc/gen_* @echo Removing generated ASN1 files - @-find heimdal/lib/asn1 -name 'asn1_*.[xc]' -exec rm -f '{}' \; - @-find heimdal/lib/gssapi -name 'asn1_*.[xc]' -exec rm -f '{}' \; - @-find heimdal/lib/hdb -name 'asn1_*.[xc]' -exec rm -f '{}' \; + @-find heimdal/lib/asn1 -name 'asn1_*.[c]' -exec rm -f '{}' \; + @-find heimdal/lib/gssapi -name 'asn1_*.[c]' -exec rm -f '{}' \; + @-find heimdal/lib/hdb -name 'asn1_*.[c]' -exec rm -f '{}' \; + @-rm -f heimdal/lib/roken/vis.h heimdal/lib/roken/err.h + @-rm -f heimdal/lib/hdb/hdb_asn1.h + @-rm -f heimdal/lib/gssapi/spnego_asn1.h + @-rm -f heimdal/lib/asn1/krb5_asn1.h distclean: clean |