summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-04-25 11:01:27 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-04-25 11:01:27 -0300
commit25116a306598b8f30606552a4570f752ac141397 (patch)
tree96d7c617e1f937c1452a7c119b2441d22b3a82da /makefile
parenteadbb9cff4378fa64f81d6944a26c3a216757ad6 (diff)
downloadlua-25116a306598b8f30606552a4570f752ac141397.tar.gz
lua-25116a306598b8f30606552a4570f752ac141397.tar.bz2
lua-25116a306598b8f30606552a4570f752ac141397.zip
"malloc.h" is not ansi.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index f7a6ac7c..fd7b562a 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.21 1996/03/05 15:57:53 roberto Exp roberto $ 1# $Id: makefile,v 1.22 1996/03/15 18:22:09 roberto Exp roberto $
2 2
3#configuration 3#configuration
4 4
@@ -52,7 +52,7 @@ y.tab.c y.tab.h : lua.stx
52 yacc++ -d lua.stx 52 yacc++ -d lua.stx
53 53
54parser.c : y.tab.c 54parser.c : y.tab.c
55 sed -e 's/yy/luaY_/g' y.tab.c > parser.c 55 sed -e 's/yy/luaY_/g' -e 's/malloc\.h/stdlib\.h/g' y.tab.c > parser.c
56 56
57parser.h : y.tab.h 57parser.h : y.tab.h
58 sed -e 's/yy/luaY_/g' y.tab.h > parser.h 58 sed -e 's/yy/luaY_/g' y.tab.h > parser.h