diff options
-rwxr-xr-x | source4/heimdal_build/asn1_deps.pl | 2 | ||||
-rw-r--r-- | source4/heimdal_build/config.mk | 2 | ||||
-rw-r--r-- | source4/main.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl index cf5ca688e4e..9c4a65976b2 100755 --- a/source4/heimdal_build/asn1_deps.pl +++ b/source4/heimdal_build/asn1_deps.pl @@ -41,7 +41,7 @@ foreach(<IN>) { } } close(IN); -print $prefix."_clean: \n"; +print "clean:: \n"; print "\t\@echo \"Deleting ASN1 output files generated from $file\""; print "\n\t\@rm -f $header"; foreach $c_file (@c_files) { diff --git a/source4/heimdal_build/config.mk b/source4/heimdal_build/config.mk index b137236b0cf..b18223192ba 100644 --- a/source4/heimdal_build/config.mk +++ b/source4/heimdal_build/config.mk @@ -446,7 +446,7 @@ heimdal_basics: \ heimdal/lib/krb5/k524_err.h \ heimdal/lib/krb5/krb5_err.h -heimdal_clean: hdb_asn1_clean spnego_asn1_clean krb5_asn1_clean +clean:: @-rm -f heimdal/lib/roken/vis.h heimdal/lib/roken/err.h @-rm -f heimdal/lib/asn1/asn1_err.{c,h} @-rm -f heimdal/lib/hdb/hdb_err.{c,h} diff --git a/source4/main.mk b/source4/main.mk index e86dbd6b847..2d619cc6f1f 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -251,7 +251,7 @@ basics: include/includes.h \ idl \ heimdal_basics -clean: heimdal_clean clean_pch +clean:: clean_pch @echo Removing objects @-find . -name '*.o' -exec rm -f '{}' \; @echo Removing hostcc objects |