diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-09 04:06:57 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-09 04:06:57 +0000 |
commit | 4b5a51c1fe0108de6fdf8b13b0eb121b09c7e625 (patch) | |
tree | db375a6be3b208e0278e53b5c7b75c091932d03d /Makefile.in | |
parent | 2756d8ee8d5cbd001bd0f30a6e73020b33e3d404 (diff) | |
download | emacs-4b5a51c1fe0108de6fdf8b13b0eb121b09c7e625.tar.gz |
* configure.in: Test for bison.
* Makefile.in (YACC): New variable.
(lib-src/Makefile.in): Edit YACC into the makefile.
* Makefile.in (YACC): New variable, to be set by top-level Makefile.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index bd5199dc221..e50afa1a54c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -43,6 +43,7 @@ LN_S=@LN_S@ CFLAGS=@CFLAGS@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@ +YACC=@YACC@ ### These help us choose version- and architecture-specific directories ### to install files in. @@ -256,6 +257,7 @@ lib-src/Makefile: ${srcdir}/lib-src/Makefile.in Makefile -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/lib-src|' \ -e 's|^\(archlibdir *=\).*$$|\1'"${archlibdir}"'|' \ -e 's|^\(ALLOCA *=\).*$$|\1'"${ALLOCA}"'|' \ + -e 's|^\(YACC *=\).*$$|\1'"${YACC}"'|' \ -e 's|^CC *=.*$$|CC='"${CC}"'|' \ -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|' \ -e 's|^C_SWITCH_SYSTEM *=.*$$|C_SWITCH_SYSTEM='"${C_SWITCH_SYSTEM}"'|' \ |