feat: autotools (#10)

* start configure

* ignore some files

* wip configure

* working configure

* working with dev tools

* rename automake -> release

* update readme

* update Makefile.dev
This commit is contained in:
2025-06-05 15:06:06 +02:00
committed by GitHub
parent d63f3f5023
commit 7626f99e32
10 changed files with 5625 additions and 32 deletions
+11
View File
@@ -0,0 +1,11 @@
AC_INIT([margen], [1.1.0], [klemek.dev@proton.me])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_CHECK_HEADERS([stdio.h])
AC_CHECK_HEADERS([stdlib.h])
AC_CHECK_HEADERS([stdbool.h])
AC_CHECK_HEADERS([string.h])
AC_CHECK_HEADERS([time.h])
AC_CHECK_HEADERS([math.h])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT