blob: 304e2537ec949ae150972a31a6b29fc7254f3968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
INCLUDES=$(all_includes)
# this might be a naive way of seeing it, but
# automake does not support C++ flex files.
#LEX_OUTPUT_ROOT = lex.GettextBase
#AM_LFLAGS = -+
CLEANFILES = pofiles.cpp
noinst_LTLIBRARIES = libgettext.la
libgettext_la_SOURCES = pofiles.cpp
pofiles.cpp: $(srcdir)/pofiles.ll
$(LEX) -+ -opofiles.cpp $(srcdir)/pofiles.ll
noinst_HEADERS = tokens.h pofiles.h
|