diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
| commit | 967be9e750221ab2ab783f95df79bb26d290a45e (patch) | |
| tree | 6802900a5e975f9f68b169f0f503f040056d6952 /42sh/src/parser/Makefile.am | |
Diffstat (limited to '42sh/src/parser/Makefile.am')
| -rw-r--r-- | 42sh/src/parser/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/42sh/src/parser/Makefile.am b/42sh/src/parser/Makefile.am new file mode 100644 index 0000000..f6c38fb --- /dev/null +++ b/42sh/src/parser/Makefile.am @@ -0,0 +1,21 @@ +lib_LIBRARIES = libparser.a + +libparser_a_SOURCES = \ + parser.h \ + parser.c \ + parser_functions.h \ + parser_commands.c \ + parser_conditionnals.c \ + parser_lists.c \ + parser_operators.c \ + parser_redir.c \ + parser_utils.h \ + parser_utils.c \ + parser_loops.c \ + parser_fundec.c + +libparser_a_CPPFLAGS = -I$(top_srcdir)/src + +libparser_a_CFLAGS = -std=c99 -Werror -Wall -Wextra -Wvla -pedantic + +noinst_LIBRARIES = libparser.a |
