Commit 18a3ddd7 by Loren J. Rittle Committed by Loren J. Rittle

Makefile.in (.y.c): Only enable production rule when maintaining.

	* Makefile.in (.y.c): Only enable production rule when
	maintaining.

From-SVN: r64371
parent 93c834b7
2003-03-14 Loren J. Rittle <ljrittle@acm.org>
* Makefile.in (.y.c): Only enable production rule when
maintaining.
2002-05-25 Roman Lechtchinsky <rl@cs.tu-berlin.de>
* gettextP.h (SWAP): Change parameter type to unsigned int.
......
......@@ -95,9 +95,12 @@ LTV_AGE=0
.c.lo:
$(LIBTOOL) --mode=compile $(COMPILE) $<
# Unless maintaining, suppress (a) smart makes who think they know how to
# automake Yacc files and (b) makes who handle VPATH search of generated
# files differently than GNU make.
.y.c:
$(YACC) $(YFLAGS) --output $@ $<
rm -f $*.h
@MAINT@ $(YACC) $(YFLAGS) --output $@ $<
@MAINT@ rm -f $*.h
.sin.sed:
sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment