1## Process this file with automake to produce Makefile.in
2
3if DBSCHEMA
4dbschema.c: $(top_srcdir)/create/src/schema.tmpl
5	$(top_srcdir)/create/bin/gen_schema.pl c > dbschema.c
6endif
7
8noinst_LIBRARIES = libzbxdbhigh.a
9
10libzbxdbhigh_a_SOURCES = \
11	host.c \
12	db.c \
13	dbschema.c \
14	proxy.c \
15	discovery.c \
16	lld.c lld.h \
17	lld_common.c \
18	lld_item.c \
19	lld_graph.c \
20	lld_trigger.c \
21	lld_host.c \
22	itservices.c \
23	template_item.c \
24	template.h \
25	trigger.c \
26	event.c \
27	export.c \
28	maintenance.c
29
30libzbxdbhigh_a_CFLAGS = -I@top_srcdir@/src/zabbix_server/
31