Thu Mar 27 17:28:47 1997 Tom Tromey <tromey@cygnus.com>
+ * m4/lispdir.m4: Don't AC_SUBST ELCFILES. From Greg Woods.
+
* texi-vers.am (stamp-@VTI@): Make commands silent.
* Makefile.am (maintainer-check): "true" is ok now.
* NORMAL_INSTALL / NORMAL_UNINSTALL -vs- recursive rules
[ maybe nothing needs be done ]
+* make sure `missing' defines are generated
+
* copyrights on m4 files, aclocal output
* is there a way to add a directory and then have "make" do all the
Document:
+AM_MISSING_PROG
+
how to use the generated makefiles
- standard targets
- required targets
fi
fi
AC_MSG_RESULT($lispdir)
- ELCFILES="\$(ELCFILES)"
fi
AC_SUBST(lispdir)])
+Thu Mar 27 18:10:47 1997 Tom Tromey <tromey@cygnus.com>
+
+ * lisp.test: New file.
+
Sat Mar 22 01:14:03 1997 Tom Tromey <tromey@cygnus.com>
* cygwin32.test: New file.
colon2.test colon3.test remake.test output.test output2.test \
remake2.test output3.test output4.test colneq2.test subst.test \
defun2.test yaccpp.test texinfo3.test texinfo4.test tagsub.test \
-cxxlibobj.test seenc.test cygwin32.test
+cxxlibobj.test seenc.test cygwin32.test lisp.test
EXTRA_DIST = defs $(TESTS)
colon2.test colon3.test remake.test output.test output2.test \
remake2.test output3.test output4.test colneq2.test subst.test \
defun2.test yaccpp.test texinfo3.test texinfo4.test tagsub.test \
-cxxlibobj.test seenc.test cygwin32.test
+cxxlibobj.test seenc.test cygwin32.test lisp.test
EXTRA_DIST = defs $(TESTS)
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
--- /dev/null
+#! /bin/sh
+
+# Test to make sure lisp handling works.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AM_PATH_LISPDIR
+END
+
+cat > Makefile.am << 'END'
+lisp_LISP = foo.el
+END
+
+: > foo.el
+: > elisp-comp
+
+$AUTOMAKE || exit 1
+
+grep '^ELCFILES.*ELCFILES' Makefile.in && exit 1
+exit 0