diff options
Diffstat (limited to 'libextra/Makefile.am')
-rw-r--r-- | libextra/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libextra/Makefile.am b/libextra/Makefile.am new file mode 100644 index 0000000000..d5615a3e39 --- /dev/null +++ b/libextra/Makefile.am @@ -0,0 +1,26 @@ +INCLUDES = -I../lib +include_HEADERS = gnutls-extra.h + +EXTRA_DIST = ext_srp.h crypt_bcrypt.h crypt_srpsha1.h gnutls_srp.h \ + auth_srp.h auth_srp_passwd.h crypt.h gnutls_openpgp.h + gnutls-extra-api.tex gnutls_extra.h + +lib_LTLIBRARIES = libgnutls-extra.la + + +COBJECTS_EXTRA = crypt_bcrypt.c crypt.c crypt_srpsha1.c ext_srp.c \ + gnutls_srp.c auth_srp.c auth_srp_passwd.c auth_srp_sb64.c \ + gnutls_openpgp.c gnutls_extra.c + +libgnutls_extra_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + +libgnutls_extra_la_SOURCES = $(COBJECTS_EXTRA) + +gnutls-extra-api.tex: $(COBJECTS_EXTRA) + @echo "" > gnutls-extra-api.tex + @for i in $(COBJECTS_EXTRA); \ + do echo -n "Creating documentation for file $$i... " && ../doc/scripts/gdoc -tex $$i >> gnutls-extra-api.tex \ + && echo "ok"; \ + done + +all-local: gnutls-extra-api.tex |