summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-04-19 21:03:31 +0000
committerRoland McGrath <roland@gnu.org>2002-04-19 21:03:31 +0000
commit59652c09a871b0a635b1ac9d265252a3db4e4064 (patch)
treee13f8e25bcf091d1587bb86b8f3ad489276abf7e /Makefile.in
parent0fdd0e025a97e0ad27e537638e784b801d6c1ff5 (diff)
2002-04-19 Roland McGrath <roland@frob.com>
* gensym.awk: Emit \n\ at the end of lines inside strings. * Makefile.in (%.symc: %.sym): Depend on gensym.awk.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 6302253..2212756 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -426,8 +426,8 @@ vpath configure $(srcdir)
#
# Building foo.h from foo.sym:
-%.symc: %.sym
- $(AWK) -f $(srcdir)/gensym.awk $< >$*.symc
+%.symc: %.sym $(srcdir)/gensym.awk
+ $(AWK) -f $(word 2,$^) $< > $@
%.symc.o: %.symc
$(CC) -S $(CPPFLAGS) $(CFLAGS) $(CPPFLAGS-$@) -x c -o $@ $<
%.h: %.symc.o