From 586838c306fb1f8c814d93d16c698d9e4967604d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 4 Aug 2005 05:23:07 +0000 Subject: r9052: Support lex/yacc compilers without support for -o (This used to be commit e641d3a847f2dafc25e5555eed601325cbc86c07) --- source4/main.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/main.mk') diff --git a/source4/main.mk b/source4/main.mk index d3620f0120..2e21e9d715 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -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)" "$<" "$@" -- cgit