Skip to content
Snippets Groups Projects
  • Malin Freeborn's avatar
    d2384218
    refactor make check as foreach loop · d2384218
    Malin Freeborn authored
    The `make check` target used to have a list of targets (inkscape,
    lualatex, et c.) but now loops through the variable `$(dependencies)`.
    
    This means projects can add individual dependencies in their makefiles
    like this:
    
    `dependencies += magick`
    
    The new dependency will be checked when running `make check`.
    Verified
    d2384218
    History
    refactor make check as foreach loop
    Malin Freeborn authored
    The `make check` target used to have a list of targets (inkscape,
    lualatex, et c.) but now loops through the variable `$(dependencies)`.
    
    This means projects can add individual dependencies in their makefiles
    like this:
    
    `dependencies += magick`
    
    The new dependency will be checked when running `make check`.