diff options
| author | Johnny Richard <johnny@johnnyrichard.com> | 2025-04-14 22:46:21 +0200 |
|---|---|---|
| committer | Johnny Richard <johnny@johnnyrichard.com> | 2025-04-14 23:11:22 +0200 |
| commit | 6938ae45af8c1ea8932aa7245b4f3adfcf3fb510 (patch) | |
| tree | 13dc3b88fd55b0706bd9439d172579f9f81bbee1 /Makefile.am | |
| parent | e7f69c8fbbbcbddde84933b2becd91e787d1ac63 (diff) | |
Add autotools build system
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..197edcc --- /dev/null +++ b/Makefile.am @@ -0,0 +1,11 @@ +bin_PROGRAMS = sm +sm_SOURCES = ./src/stack.c \ + ./src/string_view.c \ + ./src/utils.c \ + ./src/array.c \ + ./src/main.c \ + ./src/parser.c \ + ./src/vm.c \ + ./src/lexer.c + +dist_doc_DATA = README |
