aboutsummaryrefslogtreecommitdiff
path: root/src/Make.am
blob: 312c7348d66b6df1173b40453fbe4983987b61c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This file is part of grecs - Gray's Extensible Configuration System
# Copyright (C) 2007, 2009-2011 Sergey Poznyakoff
#
# Grecs is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# Grecs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Grecs.  If not, see <http://www.gnu.org/licenses/>.

if GRECS_COND_META1_PARSER
  GRECS_PARSER_META1 = meta1-gram.y meta1-lex.l
  GRECS_EXTRA_META1 = meta1-gram.h
endif

if GRECS_COND_BIND_PARSER
  GRECS_PARSER_BIND = bind-gram.y bind-lex.l
  GRECS_EXTRA_BIND = bind-gram.h
endif

if GRECS_COND_GIT_PARSER
  GRECS_PARSER_GIT = git-parser.c
endif

GRECS_SRC = \
 asprintf.c\
 diag.c\
 format.c\
 grecs-gram.y\
 grecs-lex.l\
 join.c\
 lineacc.c\
 list.c\
 lookup.c\
 mem.c\
 parser.c\
 preproc.c\
 sort.c\
 symtab.c\
 text.c\
 tree.c\
 txtacc.c\
 version.c\
 wordsplit.c\
 $(GRECS_PARSER_BIND)\
 $(GRECS_PARSER_GIT)\
 $(GRECS_PARSER_META1)

noinst_HEADERS =

EXTRA_DIST=\
 grecs-gram.h\
 $(GRECS_EXTRA_BIND)\
 $(GRECS_EXTRA_META1)\
 $(PP_SETUP_FILE)\
 Make.am Make-inst.am Make-shared.am Make-static.am

INCLUDES = -I$(srcdir) -I$(top_srcdir)/@GRECS_SUBDIR@ @GRECS_INCLUDES@ @GRECS_HOST_PROJECT_INCLUDES@
AM_YFLAGS = -dtv
AM_LFLAGS = -d

incdir=$(pkgdatadir)/$(VERSION)/include
inc_DATA = $(PP_SETUP_FILE)

LEXCOMPILE = $(top_srcdir)/@GRECS_SUBDIR@/build-aux/yyrename '$(LEX) $(LFLAGS) $(AM_LFLAGS)'
YACCCOMPILE = $(top_srcdir)/@GRECS_SUBDIR@/build-aux/yyrename '$(YACC) $(YFLAGS) $(AM_YFLAGS)'

Return to:

Send suggestions and report system problems to the System administrator.