Most Makefile users use the commandline. Thus they have no need of evoking it in the GUI. But Makefile can be used as an administration tool for the users too.
In my case, a clerk is tasked to maintain a document which changes daily, and as soon as she saves the file, the "source" is changed. I want her to convert it to PDF, stamp the PDF with a given template, encrypt it, merge it with a few other files, and produce three variations for different departments with different stamps.
I have a Makefile for that purpose, already written. Is there a way to let her evoke the Makefile without putting me to the mire of doing additional commandline training? She can save the document, evoke Makefile, and be done.
P.S. This is not about how to execute a shell script or an .EXE file because there is no shell scripts or .EXE files or any executable files in the question at all.
blah.sh
that runsmake; read
in the same dir as the makefile an option? – Kroltan Oct 11 '15 at 13:28