Re: [dev] slconfigure

2017-05-30 Thread sylvain . bertrand
On Mon, May 29, 2017 at 10:56:57PM +0200, Josuah Demangeon wrote: > I am not disappointed when I see a simple ./configure script that generate a > clean config.mk. Would something like this be acceptable to for a suckless > project ? > > case "$(uname -a)" in > *Linux* ) > XXXINC=/... >

Re: [dev] slconfigure

2017-05-29 Thread Josuah Demangeon
I am not disappointed when I see a simple ./configure script that generate a clean config.mk. Would something like this be acceptable to for a suckless project ? case "$(uname -a)" in *Linux* ) XXXINC=/... ;; *OpenBSD* ) XXXINC=/... ;; *FreeBSD* ) XXXINC=/... ;; esac te

Re: [dev] slconfigure

2017-05-29 Thread Hiltjo Posthuma
On Mon, May 29, 2017 at 01:58:41PM +, ra...@openmailbox.org wrote: > one of the most widely reported sources of suck are the autotools that gives > you the (in)ability to compile programs from source. ./configure, automake, > autoconf, autoreconf, m4, intltool, libtoolize, etc. > > the best pr

[dev] slconfigure

2017-05-29 Thread rain1
one of the most widely reported sources of suck are the autotools that gives you the (in)ability to compile programs from source. ./configure, automake, autoconf, autoreconf, m4, intltool, libtoolize, etc. the best practice used in suckless projects is generally to have a main makefile that im