Implementation of automake

This commit is contained in:
Pradana AUMARS 2021-06-27 18:56:38 +02:00
parent d61ca87864
commit 4b8ad08ce6
4 changed files with 14726 additions and 0 deletions

2
Makefile.am Normal file
View File

@ -0,0 +1,2 @@
SUBDIRS = . src
dist_doc_DATA = README

14708
configure vendored Executable file

File diff suppressed because it is too large Load Diff

13
configure.ac Normal file
View File

@ -0,0 +1,13 @@
AC_INIT([easycsv], [0.1-alpha], [paumars@courrier.dev])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
#AC_ENABLE_SHARED
#AC_DISABLE_STATIC
AC_PROG_CC
AM_PROG_AR
LT_INIT
AC_CONFIG_FILES([
Makefile
src/Makefile
])
AC_OUTPUT

3
src/Makefile.am Normal file
View File

@ -0,0 +1,3 @@
lib_LTLIBRARIES = libeasycsv.la
libeasycsv_la_SOURCES = easycsv.c
include_HEADERS = easycsv.h