diff options
Diffstat (limited to 'src/lib-otp/Makefile.am')
-rw-r--r-- | src/lib-otp/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib-otp/Makefile.am b/src/lib-otp/Makefile.am new file mode 100644 index 0000000..5b34fba --- /dev/null +++ b/src/lib-otp/Makefile.am @@ -0,0 +1,17 @@ +noinst_LTLIBRARIES = libotp.la + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib + +libotp_la_SOURCES = \ + otp-dictionary.c \ + otp-hash.c \ + otp-parity.c \ + otp-parse.c + +noinst_HEADERS = \ + otp.h \ + otp-dictionary.h \ + otp-hash.h \ + otp-parity.h \ + otp-parse.h |