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

11
src/execution/Makefile.am Normal file
View file

@ -0,0 +1,11 @@
lib_LIBRARIES = libexecution.a
libexecution_a_SOURCES = \
execution.c \
execution.h
libexecution_a_CPPFLAGS = -I$(top_srcdir)/src
libexecution_a_CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla
noinst_LIBRARIES = libexecution.a

View file

View file