xant / libhl

Simple and fast C library implementing a thread-safe API to manage hash-tables, linked lists, lock-free ring buffers and queues
GNU Lesser General Public License v3.0
420 stars 117 forks source link

Addition of a build system generator #12

Closed elfring closed 9 years ago

elfring commented 9 years ago

I suggest to reuse a higher level build system than your current small make file so that powerful checks for software features will become easier.

xant commented 9 years ago

I considered using those but I think the project is too small and simple to justify such a migration to other building tools. Makefile seems sufficient to me so far and in my personal cases it also simplified inclusion in other projects. If you feel like attempting the introduction of autotools (autoconf/automake to generate the makefiles) let me have a patch and I'll consider inclusion, otherwise I think I won't approach this subject again until things will become big enough to be unmanageable with a simple makefile or if some logic will need to know more about the architecture it's running on, justifying a configure phase.

elfring commented 9 years ago