vkottler / vmklib

Simplify project workflows by standardizing use of GNU Make.
MIT License
1 stars 0 forks source link

Add performance printing for targets #19

Closed vkottler closed 2 years ago

vkottler commented 2 years ago

It would be useful to know how long target execution takes, I think adding this to the rules themselves could be useful, but adding it to the mk top-level could be interesting as well

vkottler commented 2 years ago

In order to do this, we should probably pull some things out of datazen e.g. https://github.com/vkottler/datazen/blob/master/datazen/performance.py

we need some kind of generic library that can just live on its own

vkottler commented 2 years ago

To make some kind of generic library, we probably should figure out package building that doesn't depend on this package at all, and just generate a setup.cfg (e.g. #18)

vkottler commented 2 years ago

Added this on the next_release branch, kind of useful

vkottler commented 2 years ago

Added on https://github.com/vkottler/vmklib/pull/20