Last active
September 29, 2022 00:39
-
-
Save rubeniskov/f17c834c55960d8f04baab2a418f7630 to your computer and use it in GitHub Desktop.
Makefile build benchmark snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $(call build_benchmark,<source>) | |
define build_benchmark | |
timestamp=$$(date +%s) && \ | |
$(1) \ | |
&& printf >&2 "Build took %d seconds\n" $$(($$(date +%s)-timestamp)) | |
endef |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment