barvinok_enumerate_e: remove direct include of polylib/polylibgmp.h
[barvinok.git] / omega / Makefile.am
blob2d0aef49ba922733d9cb2dca34e780d4772e4536
1 noinst_PROGRAMS = @bv_omega_programs@
2 EXTRA_PROGRAMS = occ
4 occ_SOURCES = \
5         Exit.cc \
6         convert.cc \
7         convert.h \
8         count.cc \
9         count.h \
10         lex.yy.cc \
11         polyfunc.cc \
12         vertices.cc \
13         vertices.h \
14         y.tab.cc \
15         omega_calc/yylex.h
16 LDADD = -lcode_gen -lomega ../libbarvinok.la ../bernstein/libbernstein.la
17 LDFLAGS = @OMEGA_LDFLAGS@ @LDFLAGS@
18 CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/bernstein/include \
19             @OMEGA_CPPFLAGS@ @CPPFLAGS@
21 EXTRA_DIST = \
22         parser.l \
23         parser.y
25 YACC_FLAGS = -d
27 y.tab.hh y.tab.cc: parser.y
28         $(YACC) -o y.tab.cc -v -d $<
30 lex.yy.cc: parser.l y.tab.hh
31         $(LEX) -olex.yy.cc -i $<