* tests/Makefile.am (CLEANFILES, DISTCLEANFILES): Adjusted.
(macros.m4): Use tmp dest files ($@-t), not directly `$@'.
+2000-02-04 Akim Demaille <akim@epita.fr>
+
+ * tests/syntax.m4: Test AC_CHECK_SIZEOF.
+ * tests/Makefile.am (CLEANFILES, DISTCLEANFILES): Adjusted.
+ (macros.m4): Use tmp dest files ($@-t), not directly `$@'.
+
2000-02-04 Akim Demaille <akim@epita.fr>
Hide AH_HOOK behind AH_DEFUN.
macros.m4: $(top_srcdir)/acspecific.m4 $(srcdir)/Makefile.am
cat $(top_srcdir)/acgeneral.m4 $(top_srcdir)/acspecific.m4 | \
- sed -ne 's/^AC_DEFUN(\[*\([^],]*\).*/\1/p' | \
+ sed -ne 's/^AC_DEFUN(\[*\([^],]*\)/\1/p' | \
sort >macros
+ rm -f $@-t
for macro in `cat macros`; do \
- echo "TEST_MACRO([$$macro])" >>$@; \
+ echo "TEST_MACRO([$$macro])" >>$@-t; \
done
rm macros
+ mv $@-t $@
-clean-local:
- rm -f debug-*.sh
+CLEANFILES = debug-*.sh macro configure configure.in config.status \
+config.cache config.log config.h.in config.h
+DISTCLEANFILES = atconfig testsuite
echo
AT_INCLUDE(macros.m4)
+
+echo
+echo 'More specific tests.'
+echo
+
+TEST_MACRO([AC_CHECK_SIZEOF(long *)])