feat(autotools): basic usage

This commit is contained in:
Matteo Flebus 2026-01-07 17:38:54 +01:00
parent ec9a168764
commit 269f50a367
24 changed files with 133 additions and 1 deletions

View file

@ -0,0 +1,11 @@
lib_LIBRARIES = libio_backend.a
libio_backend_a_SOURCES = \
io_backend.c \
io_backend.h
libio_backend_a_CPPFLAGS = -I$(top_srcdir)/src
libio_backend_a_CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla
noinst_LIBRARIES = libio_backend.a

View file

View file