r9052: Support lex/yacc compilers without support for -o
authorJelmer Vernooij <jelmer@samba.org>
Thu, 4 Aug 2005 05:23:07 +0000 (05:23 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:31:12 +0000 (13:31 -0500)
(This used to be commit e641d3a847f2dafc25e5555eed601325cbc86c07)

source4/main.mk
source4/script/lex_compile.sh [new file with mode: 0755]
source4/script/yacc_compile.sh [new file with mode: 0755]

index d3620f012035a86117ab608f575b9f57400e28cc..2e21e9d715859c3a582cb0699d21687be45852fe 100644 (file)
@@ -180,7 +180,9 @@ valgrindtest: all
        ./script/tests/selftest.sh ${selftest_prefix}/st quick SOCKET_WRAPPER
 
 .y.c:
-       $(YACC) -d -o $@ $<     
+       @echo "Building $< with $(YACC)"
+       @-$(srcdir)/script/yacc_compile.sh "$(YACC)" "$<" "$@"
 
 .l.c:
-       $(LEX) -o $@ $<
+       @echo "Building $< with $(LEX)"
+       @-$(srcdir)/script/lex_compile.sh "$(LEX)" "$<" "$@"
diff --git a/source4/script/lex_compile.sh b/source4/script/lex_compile.sh
new file mode 100755 (executable)
index 0000000..7af9ea1
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+LEX="$1"
+SRC="$2"
+DEST="$3"
+
+dir=`dirname $SRC`
+file=`basename $SRC`
+base=`basename $SRC .l`
+if [ -z "$LEX" ]; then
+       echo "lex not found - not regenerating $DEST"
+       return;
+fi
+if [ -r $DEST ]; then
+    if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
+           return;
+    fi
+fi
+TOP=`pwd`
+if cd $dir && $LEX $file; then
+    sed '/^#/ s|$base.yy\.c|$DEST|' $base.yy.c > $base.c
+    rm -f $base.yy.c
+fi
+cd $TOP
diff --git a/source4/script/yacc_compile.sh b/source4/script/yacc_compile.sh
new file mode 100755 (executable)
index 0000000..46a6fb6
--- /dev/null
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+YACC="$1"
+SRC="$2"
+DEST="$3"
+
+dir=`dirname $SRC`
+file=`basename $SRC`
+base=`basename $SRC .y`
+if [ -z "$YACC" ]; then
+       echo "yacc not found"
+       return;
+fi
+if [ -r $DEST ]; then
+       if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
+           return;
+    fi
+fi
+TOP=`pwd`
+if cd $dir && $YACC -d $file; then
+       sed -e "/^#/!b" -e "s|y\.tab\.h|$base.h|" y.tab.h > $base.h
+       sed '/^#/ s|y\.tab\.c|$base.c|' y.tab.c > $base.c
+       rm -f y.tab.c y.tab.h
+fi
+cd $TOP