German translation of 2 error files
[heimdal.git] / lib / hdb / Makefile.am
blob89969b495624a3861ed621d1d07122242129d5ab
1 # $Id$
3 include $(top_srcdir)/Makefile.am.common
5 AM_CPPFLAGS += -I../asn1 -I$(srcdir)/../asn1
6 AM_CPPFLAGS += $(INCLUDE_openldap) -DHDB_DB_DIR=\"$(DIR_hdbdir)\"
7 AM_CPPFLAGS += -I$(srcdir)/../krb5
8 AM_CPPFLAGS += $(INCLUDE_sqlite3)
9 AM_CPPFLAGS += $(INCLUDE_libintl)
10 if HAVE_DBHEADER
11 AM_CPPFLAGS += -I$(DBHEADER)
12 endif
14 BUILT_SOURCES = \
15         $(gen_files_hdb:.x=.c)  \
16         hdb_err.c \
17         hdb_err.h
19 gen_files_hdb = \
20         asn1_Salt.x \
21         asn1_Key.x \
22         asn1_Event.x \
23         asn1_HDBFlags.x \
24         asn1_GENERATION.x \
25         asn1_HDB_Ext_PKINIT_acl.x \
26         asn1_HDB_Ext_PKINIT_cert.x \
27         asn1_HDB_Ext_PKINIT_hash.x \
28         asn1_HDB_Ext_Constrained_delegation_acl.x \
29         asn1_HDB_Ext_Lan_Manager_OWF.x \
30         asn1_HDB_Ext_Password.x \
31         asn1_HDB_Ext_Aliases.x \
32         asn1_HDB_Ext_KeySet.x \
33         asn1_HDB_extension.x \
34         asn1_HDB_extensions.x \
35         asn1_hdb_entry.x \
36         asn1_hdb_entry_alias.x \
37         asn1_hdb_keyset.x \
38         asn1_Keys.x
40 CLEANFILES = $(BUILT_SOURCES) $(gen_files_hdb) \
41         hdb_asn1{,-priv}.h* hdb_asn1_files hdb_asn1-template.[cx]
43 LDADD = libhdb.la \
44         ../krb5/libkrb5.la \
45         ../asn1/libasn1.la \
46         $(LIB_hcrypto) \
47         $(LIB_roken) \
48         $(LIB_openldap) \
49         $(LIB_libintl) \
50         $(LIB_ldopen)
53 if OPENLDAP_MODULE
55 ldap_so = hdb_ldap.la
56 hdb_ldap_la_SOURCES = hdb-ldap.c
57 hdb_ldap_la_LDFLAGS = -module -avoid-version
58 hdb_ldap_la_LIBADD = $(LIB_openldap) libhdb.la
60 else
62 ldap = hdb-ldap.c
63 ldap_lib = $(LIB_openldap)
65 endif
68 lib_LTLIBRARIES = libhdb.la $(ldap_so)
69 libhdb_la_LDFLAGS = -version-info 11:0:2
71 if versionscript
72 libhdb_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
73 endif
75 noinst_PROGRAMS = test_dbinfo test_hdbkeys test_mkey test_hdbplugin
77 dist_libhdb_la_SOURCES =                        \
78         common.c                                \
79         db.c                                    \
80         db3.c                                   \
81         ext.c                                   \
82         $(ldap)                                 \
83         hdb.c                                   \
84         hdb-sqlite.c                            \
85         hdb-keytab.c                            \
86         hdb-mdb.c                               \
87         hdb-mitdb.c                             \
88         hdb_locl.h                              \
89         keys.c                                  \
90         keytab.c                                \
91         dbinfo.c                                \
92         mkey.c                                  \
93         ndbm.c                                  \
94         print.c
96 nodist_libhdb_la_SOURCES = $(BUILT_SOURCES)
98 libhdb_la_DEPENDENCIES = version-script.map
100 include_HEADERS = hdb.h $(srcdir)/hdb-protos.h
101 nodist_include_HEADERS =  hdb_err.h hdb_asn1.h
103 noinst_HEADERS = $(srcdir)/hdb-private.h
105 libhdb_la_LIBADD = \
106         $(LIB_com_err) \
107         ../krb5/libkrb5.la \
108         ../asn1/libasn1.la \
109         $(LIB_sqlite3) \
110         $(LIBADD_roken) \
111         $(ldap_lib) \
112         $(LIB_dlopen) \
113         $(DB3LIB) $(DB1LIB) $(LMDBLIB) $(NDBMLIB)
115 HDB_PROTOS = $(srcdir)/hdb-protos.h $(srcdir)/hdb-private.h
117 ALL_OBJECTS  = $(libhdb_la_OBJECTS)
118 ALL_OBJECTS += $(test_dbinfo_OBJECTS)
119 ALL_OBJECTS += $(test_hdbkeys_OBJECTS)
120 ALL_OBJECTS += $(test_mkey_OBJECTS)
121 ALL_OBJECTS += $(test_hdbplugin_OBJECTS)
123 $(ALL_OBJECTS): $(HDB_PROTOS)
125 $(libhdb_la_OBJECTS): hdb_asn1.h hdb_asn1-priv.h hdb_err.h
127 $(srcdir)/hdb-protos.h: $(dist_libhdb_la_SOURCES)
128         cd $(srcdir); perl ../../cf/make-proto.pl -q -P comment -o hdb-protos.h $(dist_libhdb_la_SOURCES) || rm -f hdb-protos.h
130 $(srcdir)/hdb-private.h: $(dist_libhdb_la_SOURCES)
131         cd $(srcdir); perl ../../cf/make-proto.pl -q -P comment -p hdb-private.h $(dist_libhdb_la_SOURCES) || rm -f hdb-private.h
133 $(gen_files_hdb) hdb_asn1.hx hdb_asn1-priv.hx: hdb_asn1_files
135 hdb_asn1_files: $(ASN1_COMPILE_DEP) $(srcdir)/hdb.asn1
136         $(ASN1_COMPILE) --sequence=HDB-Ext-KeySet --sequence=Keys $(srcdir)/hdb.asn1 hdb_asn1
138 test_dbinfo_LIBS = libhdb.la
140 test_hdbkeys_LIBS = ../krb5/libkrb5.la libhdb.la
141 test_mkey_LIBS = $(test_hdbkeys_LIBS)
142 test_hdbplugin_LIBS = $(test_hdbkeys_LIBS)
144 # to help stupid solaris make
146 hdb_err.h: hdb_err.et
148 EXTRA_DIST = \
149         NTMakefile \
150         libhdb-version.rc \
151         libhdb-exports.def \
152         hdb.asn1 \
153         hdb_err.et \
154         hdb.schema \
155         version-script.map \
156         data-mkey.mit.des3.le \
157         data-mkey.mit.des3.be