Displaying 2 results from an estimated 2 matches for "d6aaba7".
Did you mean:
a63aba7
2016 Aug 04
1
[PATCH] build: add simple custom silent rules for automake
...unix -c $< -o $@
%.cmx: %.ml mlguestfs.cmxa
- $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -package unix -c $< -o $@
+ $(guestfs_am_v_ocamlopt)$(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -package unix -c $< -o $@
endif
depend: .depend
diff --git a/subdir-rules.mk b/subdir-rules.mk
index 39c2f50..d6aaba7 100644
--- a/subdir-rules.mk
+++ b/subdir-rules.mk
@@ -56,11 +56,25 @@ MLARCHIVE = cmxa
BEST = opt
endif
+# custom silent rules
+guestfs_am_v_ocamlc = $(guestfs_am_v_ocamlc_@AM_V@)
+guestfs_am_v_ocamlc_ = $(guestfs_am_v_ocamlc_@AM_DEFAULT_V@)
+guestfs_am_v_ocamlc_0 = @echo " OCAMLC "...
2016 Aug 04
0
[PATCH] build: Add silent rules for podwrapper.
...unlink $text;
die "$input: errors or warnings in this POD file, see messages above\n"
}
- print "$progname: wrote $text\n";
+ #print "$progname: wrote $text\n";
}
sub read_whole_file
diff --git a/subdir-rules.mk b/subdir-rules.mk
index d6aaba7..2432939 100644
--- a/subdir-rules.mk
+++ b/subdir-rules.mk
@@ -69,6 +69,9 @@ guestfs_am_v_javac_0 = @echo " JAVAC " $@;
guestfs_am_v_erlc = $(guestfs_am_v_erlc_@AM_V@)
guestfs_am_v_erlc_ = $(guestfs_am_v_erlc_@AM_DEFAULT_V@)
guestfs_am_v_erlc_0 = @echo " ERLC " $@;
+g...