diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-03-25 14:55:36 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2022-03-26 17:40:06 +0000 |
commit | cdf1532b13efe667f40dd472f41b4e12a0282dea (patch) | |
tree | b7b0faa61d543f9947c31755733378ec167582c0 /Makefile.am | |
parent | 324ecde7352e7a129f30b795a1c2d9142600aeea (diff) |
meson: Add a meson build system
This does everything the autotools based system does, including building
both a static and shared version by default, though this can be
controlled with meson's builtin `default_library` option.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index b07aa31..4e885eb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,4 +43,7 @@ lint: (cd src && $(MAKE) $(MFLAGS) lint) endif LINT -EXTRA_DIST = README.md +EXTRA_DIST = \ + meson.build \ + README.md + |