feat(autotools): explainations in README

This commit is contained in:
Matteo Flebus 2026-01-09 14:27:27 +01:00
parent 65a033c5f6
commit b54488c17f
10 changed files with 35 additions and 43 deletions

View file

@ -1,8 +1,8 @@
# Init the 42sh project
AC_INIT([42sh], [1.0], [matteo.flebus@epita.fr])
FLAGS="-std=c99 -pedantic -Werror -Wall -Wextra -Wvla"
AC_SUBST([FLAGS])
# FLAGS="-std=c99 -pedantic -Werror -Wall -Wextra -Wvla"
# AC_SUBST([FLAGS])
# Setup Automake
AM_INIT_AUTOMAKE([subdir-objects] [foreign])
@ -32,6 +32,9 @@ AC_CONFIG_FILES([
src/execution/Makefile
src/expansion/Makefile
src/utils/Makefile
tests/Makefile
tests/unit/Makefile
tests/unit/utils/Makefile
])
# TODO add tests Makefile here
AC_OUTPUT