aboutsummaryrefslogtreecommitdiff
path: root/src/Make.am
blob: 5444e1dfc349bfbfb98a253a8295d4f45391669f (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# This file is part of grecs - Gray's Extensible Configuration System
# Copyright (C) 2007-2022 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/>.

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

GRECS_SRC = \
 asprintf.c\
 assert.c\
 cidr.c\
 diag.c\
 format.c\
 grecs-gram.y\
 grecs-lex.l\
 grecs-gram.h\
 ipstr.c\
 join.c\
 lineacc.c\
 list.c\
 lookup.c\
 mem.c\
 opthelp.c\
 parser.c\
 parsertab.c\
 path-parser.c\
 sort.c\
 symtab.c\
 text.c\
 tree.c\
 txtacc.c\
 version.c

grecs-gram.h: grecs-gram.c

if GRECS_COND_META1_PARSER
  GRECS_SRC += meta1-gram.y meta1-lex.l meta1-gram.h
  BUILT_SOURCES += meta1-gram.h
  PARSER_DEFS += -DENABLE_META1_PARSER
meta1-gram.h: meta1-gram.c
endif

if GRECS_COND_BIND_PARSER
  GRECS_SRC += bind-gram.y bind-lex.l bind-gram.h
  BUILT_SOURCES += bind-gram.h
  PARSER_DEFS += -DENABLE_BIND_PARSER
bind-gram.h: bind-gram.c
endif

if GRECS_COND_DHCPD_PARSER
  GRECS_SRC += dhcpd-gram.y dhcpd-lex.l dhcpd-gram.h
  BUILT_SOURCES += dhcpd-gram.h
  PARSER_DEFS += -DENABLE_DHCPD_PARSER
dhcpd-gram.h: dhcpd-gram.c
endif  

if GRECS_COND_GIT_PARSER
  GRECS_SRC += git-parser.c
  PARSER_DEFS += -DENABLE_GIT_PARSER 
endif

if GRECS_COND_JSON
  GRECS_SRC += json-gram.y json-lex.l jsonfmt.c json-gram.h
  BUILT_SOURCES += json-gram.h
json-gram.h: json-gram.c
endif

VPATH += $(top_srcdir)/@GRECS_SUBDIR@/wordsplit
NODIST_GRECS_SRC = wordsplit.c

if GRECS_COND_SOCKADDR_LIST
  GRECS_SRC += sockaddr.c
endif  
 
AM_CPPFLAGS = \
 -I$(srcdir)\
 -I$(top_srcdir)/@GRECS_SUBDIR@\
 @GRECS_INCLUDES@\
 @GRECS_HOST_PROJECT_INCLUDES@\
 $(PARSER_DEFS)
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.