Re: Extramake loadable module library - sum, multiply and comparison functions

2025-07-05 Thread Tim Murphy
Hi Thanks to a suggestion from Bahman Movaqar, I've started providing extramake with packages, starting with Artix/Arch since this is my current distribution. I indent to go on to Ubuntu/Debian and possibly the RPM world. https://github.com/tnmurphy/extramake - extramake is a library of functions

Re: Extramake loadable module library - sum, multiply and comparison functions

2025-06-29 Thread Tim Murphy
On Sun, 29 Jun 2025 at 00:40, Kaz Kylheku wrote: > In my opinion, this should be done by improving the interface between > Guile and Make. > > I mean why would you be making a reverse function as a C extension when > you already have a Lisp dialect bolted on? > > I have a couple of reasons and so

Re: Extramake loadable module library - sum, multiply and comparison functions

2025-06-28 Thread Kaz Kylheku
In my opinion, this should be done by improving the interface between Guile and Make. I mean why would you be making a reverse function as a C extension when you already have a Lisp dialect bolted on? On June 28, 2025 7:09:35 AM GMT+09:00, Tim Murphy wrote: >Hi, > >https://github.com/tnmurph

Re: Extramake loadable module library - sum, multiply and comparison functions

2025-06-27 Thread Tim Murphy
Hi, https://github.com/tnmurphy/extramake extramake is a C function library for GNU Make. It has quite a lot of functions already but most recently I've added a function to reverse tokens in a list: New Features and Corrections - $(reverse ab cd ef) = ef

Re: Extramake loadable module library - sum, multiply and comparison functions

2025-06-19 Thread Basile Starynkevitch
On Thu, 2025-06-19 at 16:49 +0100, Tim Murphy wrote: > Hi, > > I've added a couple more functions to this library of loadable C functions > forĀ  GNU make: > > https://github.com/tnmurphy/extramake > > Regards, > > Tim Murphy > > > REGEX - Regular Expression Matching >

Re: Extramake loadable module library - sum, multiply and comparison functions

2025-06-19 Thread Tim Murphy
Hi, I've added a couple more functions to this library of loadable C functions for GNU make: https://github.com/tnmurphy/extramake Regards, Tim Murphy REGEX - Regular Expression Matching -load regex.mk HANDLE:=$(regcomp, String(.*)) MATCH1:=$(regexec $(HANDL

Extramake loadable module library - sum, multiply and comparison functions

2015-11-09 Thread Tim Murphy
Hi, I'd just like to mention that the extramake module library that I mentioned some days ago now has a few new useful functions. https://bitbucket.org/tnmurphy/extramake $(sum ) finds the sum of a list of integers. Negative integers are allowed. Any non-numeric characters will cause