diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 10:22:40 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 11:55:38 -0500 |
commit | e57fe29b63b883e7e214d1b619bc6953b70fa489 (patch) | |
tree | e189d7d74b3666a18f8285fbf3ec467a6458b33e /GNUmakefile.am | |
parent | Initial commit (diff) | |
download | locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.gz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.bz2 locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.lz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.xz locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.tar.zst locusts-e57fe29b63b883e7e214d1b619bc6953b70fa489.zip |
Add autotools because why not
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'GNUmakefile.am')
-rw-r--r-- | GNUmakefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/GNUmakefile.am b/GNUmakefile.am new file mode 100644 index 0000000..4f51989 --- /dev/null +++ b/GNUmakefile.am @@ -0,0 +1,11 @@ +lib_LTLIBRARIES = libocusts.la +libocusts_la_LDFLAGS = -version-info 1:0:0 +libocusts_la_SOURCES = include/locusts.h +lib_LIBRARIES = libocusts.a +libocusts_a_SOURCES = include/locusts.h +include_HEADERS = include/locusts.h + + +install-data-local: + mkdir -p $(libdir)/pkgconfig + cp ocusts.pc $(libdir)/pkgconfig/ocusts.pc
\ No newline at end of file |