summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-05-08 14:34:32 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-05-08 14:34:32 +0000
commita4e7ae15374d4cd82b29f25232e62db3b312a7a9 (patch)
tree413b192c991c542ac0976184fa600c8922475261 /Makefile
parentff82a8046d9e610a1ef86dfe837f8272ce111ac5 (diff)
don't let make use implicit rules for bison/flex output files
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25565 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 98a669ed3..39168d765 100644
--- a/Makefile
+++ b/Makefile
@@ -482,10 +482,10 @@ ifneq ($(wildcard .tags-depend),)
endif
ast_expr2.c:
- bison -d --name-prefix=ast_yy ast_expr2.y -o ast_expr2.c
+ bison -o $@ -d --name-prefix=ast_yy ast_expr2.y
ast_expr2f.c:
- flex --full ast_expr2.fl
+ flex -o $@ --full ast_expr2.fl
testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h
gcc -g -c -DSTANDALONE ast_expr2f.c