blob: 9e25b83822268c882bcae0057d11eea9482bf011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
bin_PROGRAMS = \
creg
creg_SOURCES = creg.cc json_feature_map_lexer.cc
creg_LDADD = $(top_srcdir)/training/liblbfgs/liblbfgs.a $(top_srcdir)/utils/libutils.a -lz
json_feature_map_lexer.cc: json_feature_map_lexer.ll
$(LEX) -s -8 -CF -o$@ $<
AM_CPPFLAGS = -W -Wall -DNDEBUG -I$(top_srcdir)/utils -I$(top_srcdir)/training
|