Use automake 1.11 vala support + cleaning of the Makefile.am:
[platform/upstream/libgee.git] / benchmark / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 noinst_PROGRAMS = benchmarks
4
5 benchmarks_SOURCES = \
6         benchmark.vala \
7         benchmarksorts.vala \
8         mergesort.vala \
9         $(NULL)
10
11 benchmarks_VALAFLAGS = \
12         --basedir $(top_srcdir) \
13         --vapidir $(top_srcdir)/gee \
14         --pkg gee-internals-1.0 \
15         $(NULL)
16
17 benchmarks_CPPFLAGS = \
18         -I$(top_srcdir)/gee \
19         $(GLIB_CFLAGS) \
20         $(NULL)
21
22 benchmarks_LDADD = \
23         $(GLIB_LIBS) \
24         ../gee/libgee.la \
25         $(NULL)
26
27 benchmarks_LDFLAGS = \
28         -lm \
29         $(NULL)