From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a02:560a:: with SMTP id o10mr867330jab.8.1543332718370; Tue, 27 Nov 2018 07:31:58 -0800 (PST) X-Received: by 2002:a9d:ef3:: with SMTP id 106mr16894otj.6.1543332718222; Tue, 27 Nov 2018 07:31:58 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!feeder.erje.net!1.eu.feeder.erje.net!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.166.215.MISMATCH!k10no87709itk.0!news-out.google.com!y103-v6ni74ita.0!nntp.google.com!k10no87704itk.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 27 Nov 2018 07:31:57 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=31.186.239.209; posting-account=O1Kt4QoAAABKYAjrg-cGai_vZLnN2LEw NNTP-Posting-Host: 31.186.239.209 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: ANN: smk v0.0.3, first public release From: Lionel Draghi Injection-Date: Tue, 27 Nov 2018 15:31:58 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:54913 Date: 2018-11-27T07:31:57-08:00 List-Id: smk is a make without Makefile. Smk stands for smart make. Or simple make, as you want. Overview: --------- smk needs as argument a simple file containing commands, like MyBuild.txt: gcc -o hello.o -c hello.c gcc -o main.o -c main.c gcc -o hello hello.o main.o Thats it. No depedencies, no recipes, no targets. How does it works? ------------------ During execution, smk observes which files are read, and will be considered as input files (sources), and which are written, and will be considered as targets. When re-running MyBuild.txt, smk checks for updated sources since last run, and missing targets, and run only what should be run accordingly. Get it and build it: -------------------- git clone https://github.com/LionelDraghi/smk.git cd smk gprbuild -P smk.gpr NB : It is a *Linux* specific tools (for now), relying on strace / ptrace. Quick Start and more : ---------------------- http://lionel.draghi.free.fr/smk/ Thanks for your feedback on the tool. Lionel