1 | ## Process this file with automake to create Makefile.in
|
---|
2 |
|
---|
3 | ## Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
---|
4 | ##
|
---|
5 | ## This program is free software; you can redistribute it and/or modify
|
---|
6 | ## it under the terms of the GNU General Public License as published by
|
---|
7 | ## the Free Software Foundation; either version 2, or (at your option)
|
---|
8 | ## any later version.
|
---|
9 | ##
|
---|
10 | ## This program is distributed in the hope that it will be useful,
|
---|
11 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | ## GNU General Public License for more details.
|
---|
14 | ##
|
---|
15 | ## You should have received a copy of the GNU General Public License
|
---|
16 | ## along with this program; if not, write to the Free Software
|
---|
17 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
---|
18 | ## 02110-1301, USA.
|
---|
19 |
|
---|
20 | autotestlibdir = $(pkgdatadir)/autotest
|
---|
21 | dist_autotestlib_DATA = autotest.m4 general.m4
|
---|
22 | nodist_autotestlib_DATA = autotest.m4f
|
---|
23 | CLEANFILES = $(nodist_autotestlib_DATA)
|
---|
24 |
|
---|
25 | ## --------------- ##
|
---|
26 | ## Building TAGS. ##
|
---|
27 | ## --------------- ##
|
---|
28 |
|
---|
29 | TAGS_FILES = $(dist_autotestlib_DATA)
|
---|
30 |
|
---|
31 | ETAGS_ARGS = $(ETAGS_FOR_AUTOCONF)
|
---|
32 |
|
---|
33 |
|
---|
34 | ## -------- ##
|
---|
35 | ## Checks. ##
|
---|
36 | ## -------- ##
|
---|
37 |
|
---|
38 | check-local: check-forbidden-patterns
|
---|
39 | forbidden_patterns = -e '^_*EOF' -e ' cmp '
|
---|
40 | forbidden_patterns_files = $(dist_autotestlib_DATA)
|
---|
41 |
|
---|
42 |
|
---|
43 | ## ------------------ ##
|
---|
44 | ## The frozen files. ##
|
---|
45 | ## ------------------ ##
|
---|
46 |
|
---|
47 | autotest.m4f: $(autotest_m4f_dependencies)
|
---|
48 | include ../freeze.mk
|
---|