aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/Makefile.common
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-02-09 23:35:30 +0000
committerGuy Harris <guy@alum.mit.edu>2013-02-09 23:35:30 +0000
commita13d58a509ebb60a6cf1991be902234f97280ce6 (patch)
tree3fdf186720e45f24658bcf0323a9f7801378c88f /epan/dfilter/Makefile.common
parent233fcd672fa3075416df494d79fd702f2d28486e (diff)
Put NODIST_ at the beginning of macro names, as was done for the plugins
directory. svn path=/trunk/; revision=47599
Diffstat (limited to 'epan/dfilter/Makefile.common')
-rw-r--r--epan/dfilter/Makefile.common10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dfilter/Makefile.common b/epan/dfilter/Makefile.common
index bd571af98b..4b139dc41a 100644
--- a/epan/dfilter/Makefile.common
+++ b/epan/dfilter/Makefile.common
@@ -69,7 +69,7 @@ GENERATED_C_FILES = \
scanner.c
# The C source files they generate and that we don't want in the distribution
-GENERATED_NODIST_C_FILES = \
+NODIST_GENERATED_C_FILES = \
grammar.c
# The header files that they generate and that we want in the distribution
@@ -77,7 +77,7 @@ GENERATED_HEADER_FILES = \
scanner_lex.h
# The header files that they generate and that we don't want in the distribution
-GENERATED_NODIST_HEADER_FILES = \
+NODIST_GENERATED_HEADER_FILES = \
grammar.h
# All the generated files we want in the distribution.
@@ -86,6 +86,6 @@ GENERATED_FILES = \
$(GENERATED_HEADER_FILES)
# All the generated files we don't want in the distribution.
-GENERATED_NODIST_FILES = \
- $(GENERATED_NODIST_C_FILES) \
- $(GENERATED_NODIST_HEADER_FILES)
+NODIST_GENERATED_FILES = \
+ $(NODIST_GENERATED_C_FILES) \
+ $(NODIST_GENERATED_HEADER_FILES)