File: Makefile.am

package info (click to toggle)
filtergen 0.12.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,924 kB
  • sloc: sh: 5,485; ansic: 4,268; yacc: 692; lex: 362; makefile: 165
file content (95 lines) | stat: -rw-r--r-- 2,045 bytes parent folder | download
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
TESTS = t_01_ccomment \
	t_02_hashcomment \
	t_03_hashnonewline \
	t_04_keywords \
	t_05_punct \
	t_06_numbers \
	t_07_names \
	t_08_networknames \
	t_09_badcomment \
	t_10_goodcomment \
	t_11_includeone \
	t_12_includeloop \
	t_13_includetwo \
	t_14_includeinline \
	t_15_includenotfound \
	t_16_emptyfilter \
	t_17_oneemptyrule \
	t_18_manyemptyrules \
	t_19_simplerule \
	t_20_fullrule \
	t_21_compoundarg \
	t_22_hostnames \
	t_23_ports \
	t_24_log \
	t_25_target \
	t_26_negation \
	t_27_compoundspecifier \
	t_28_routing \
	t_30_chaingroup \
	t_31_chaingroupbad \
	t_32_syntaxexamples \
	t_33_nestedparse \
	t_34_ast \
	t_35_rule_list \
	t_36_rule \
	t_37_specifier_list \
	t_38_specifier \
	t_39_negated_specifier \
	t_40_direction \
	t_41_target \
	t_42_host \
	t_43_port \
	t_44_protocol \
	t_45_icmptype \
	t_46_routing \
	t_47_subrule_list \
	t_48_chaingroup \
	t_49_convertspeclist \
	t_50_convertrulelist \
	t_51_convertdirection \
	t_52_converthost \
	t_53_convertproto \
	t_54_convertport \
	t_55_converticmptype \
	t_56_convertrouting \
	t_57_convertchains \
	t_58_convertcompound \
	t_59_convertnested \
	t_60_bigugly \
	t_61_convertlog \
	t_62_convertoptions \
	t_63_includedir \
	t_64_includedirwfile \
	t_65_includedirwdir \
	t_66_includedirtwofiles \
	t_67_includeemptyfile \
	t_68_noop \
	t_69_includeemptynoop \
	t_70_includesemicolon \
	t_71_includeglob \
	t_72_noincluderoot \
	check_examples


check_PROGRAMS = scan parse emit convert factorise

scan_SOURCES = scan.c
scan_LDADD = @GCOV_LIBS@ ../scanner.o ../parser.o

parse_SOURCES = parse.c
parse_LDADD = @GCOV_LIBS@ ../scanner.o ../parser.o

emit_SOURCES = emit.c
emit_LDADD = @GCOV_LIBS@ ../scanner.o ../parser.o

convert_SOURCES = convert.c
convert_LDADD = @GCOV_LIBS@ ../scanner.o ../parser.o ../glue.o ../filter.o ../fg-util.o

factorise_SOURCES = factorise.c
factorise_LDADD = @GCOV_LIBS@ ../scanner.o ../parser.o

EXTRA_DIST = $(top_srcdir)/t/data/*.in $(top_srcdir)/t/data/*.out \
	testlib $(TESTS)

AM_CFLAGS = -g -Wall -Werror -I$(top_srcdir) @GCOV_CFLAGS@