Skip to content

Update make targets to fit better with what's currently in Accounting

Boros Gábor requested to merge josh/fix-make-all-target into master

Created by: kaizoku

The make all target had rundev on a new line, which attempts to run it as a command, rather than making the 'all' target dependent on the 'rundev' target.

Console Logs: Before fix:

$ make
rundev
/bin/bash: rundev: command not found
Makefile:40: recipe for target 'all' failed
make: *** [all] Error 127

Merge deadline: None

Testing instructions:

  1. Run make all and ensure the run.dev target is run, instead of an error.

Merge request reports