clean files
[heimdal.git] / lib / hdb / Makefile.am
bloba0590d6b4128f1f255b5c198876a9cb9a43e0605
1 # $Id$
3 include $(top_srcdir)/Makefile.am.common
5 AM_CPPFLAGS += -I../asn1 -I$(srcdir)/../asn1 $(INCLUDE_hcrypto)
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         $(LIB_openldap) \
45         $(LIB_libintl) \
46         ../krb5/libkrb5.la \
47         ../asn1/libasn1.la \
48         $(LIB_hcrypto) \
49         $(LIB_roken) \
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         $(DBLIB) \
114         $(LIB_NDBM)
116 HDB_PROTOS = $(srcdir)/hdb-protos.h $(srcdir)/hdb-private.h
118 ALL_OBJECTS  = $(libhdb_la_OBJECTS)
119 ALL_OBJECTS += $(test_dbinfo_OBJECTS)
120 ALL_OBJECTS += $(test_hdbkeys_OBJECTS)
121 ALL_OBJECTS += $(test_mkey_OBJECTS)
122 ALL_OBJECTS += $(test_hdbplugin_OBJECTS)
124 $(ALL_OBJECTS): $(HDB_PROTOS)
126 $(libhdb_la_OBJECTS): hdb_asn1.h hdb_asn1-priv.h hdb_err.h
128 $(srcdir)/hdb-protos.h: $(dist_libhdb_la_SOURCES)
129         cd $(srcdir); perl ../../cf/make-proto.pl -q -P comment -o hdb-protos.h $(dist_libhdb_la_SOURCES) || rm -f hdb-protos.h
131 $(srcdir)/hdb-private.h: $(dist_libhdb_la_SOURCES)
132         cd $(srcdir); perl ../../cf/make-proto.pl -q -P comment -p hdb-private.h $(dist_libhdb_la_SOURCES) || rm -f hdb-private.h
134 $(gen_files_hdb) hdb_asn1.hx hdb_asn1-priv.hx: hdb_asn1_files
136 hdb_asn1_files: $(ASN1_COMPILE_DEP) $(srcdir)/hdb.asn1
137         $(ASN1_COMPILE) --sequence=HDB-Ext-KeySet --sequence=Keys $(srcdir)/hdb.asn1 hdb_asn1
139 test_dbinfo_LIBS = libhdb.la
141 test_hdbkeys_LIBS = ../krb5/libkrb5.la libhdb.la
142 test_mkey_LIBS = $(test_hdbkeys_LIBS)
143 test_hdbplugin_LIBS = $(test_hdbkeys_LIBS)
145 # to help stupid solaris make
147 hdb_err.h: hdb_err.et
149 EXTRA_DIST = \
150         NTMakefile \
151         libhdb-version.rc \
152         libhdb-exports.def \
153         hdb.asn1 \
154         hdb_err.et \
155         hdb.schema \
156         version-script.map \
157         data-mkey.mit.des3.le \
158         data-mkey.mit.des3.be