blob: 6f5f4fe2b6003d9d2bd49bc6763309231bc670b5 (
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.cc
noinst_LTLIBRARIES = libgettext.la
libgettext_la_SOURCES = pofiles.cc
pofiles.cc: $(srcdir)/pofiles.ll
$(LEX) -+ -opofiles.cc $(srcdir)/pofiles.ll
noinst_HEADERS = tokens.h pofiles.h
|