+Sun Jul 3 07:46:25 1994 Tom Yu (tlyu at dragons-lair)
+
+ * aclocal.m4: fixing things so we don't have to bother ignoring
+ errors.
+
Fri Jul 1 13:01:19 1994 Mark Eichin (eichin@cygnus.com)
* aclocal.m4: added WITH_CC for use when CONFIG_RULES isn't safe.
divert(9)dnl
includes:: $1
- -mkdir $2
- -if cmp $1 $2/$1 >/dev/null 2>&1; then \
- echo ; \
+ if test -d $2; then :; else mkdir $2; fi
+ if cmp $1 $2/$1 >/dev/null 2>&1; then :; \
else \
[$](RM) $2/$1 ; \
[$](CP) $1 $2/$1; \
divert(9)dnl
includes:: $1
- -mkdir $2
- -if cmp $(srcdir)/$1 $2/$1 >/dev/null 2>&1; then \
- echo ; \
+ if test -d $2; then :; else mkdir $2; fi
+ -if cmp $(srcdir)/$1 $2/$1 >/dev/null 2>&1; then :; \
else \
[$](RM) $2/$1 ; \
[$](CP) $(srcdir)/$1 $2/$1; \
undefine([AC_PROG_LEX])dnl
define(AC_PROG_LEX,
[AC_PROVIDE([$0])dnl
-LEX="lex"
+AC_PROGRAM_CHECK(LEX, flex, flex, lex)dnl
if test -z "$LEXLIB"
then
- AC_HAVE_LIBRARY(l, LEXLIB="-ll")
+ case "$LEX" in
+ flex*) AC_HAVE_LIBRARY(fl, LEXLIB="-lfl") ;;
+ *) AC_HAVE_LIBRARY(l, LEXLIB="-ll") ;;
+ esac
fi
AC_VERBOSE(setting LEXLIB to $LEXLIB)
AC_SUBST(LEX)AC_SUBST(LEXLIB)])dnl
Sun Jul 3 04:41:54 1994 Tom Yu (tlyu at dragons-lair)
+ * post.in: whoops, now making sure errors don't get returned if
+ something is empty
+
* post.in: fixing missing semicolon in make rules
+ * pre.in: MV=mv -f
Sat Jul 2 00:03:24 1994 Tom Yu (tlyu at dragons-lair)
all::
clean::
- if test -n "$(OBJS)" ; then $(RM) $(OBJS); fi
+ if test -n "$(OBJS)" ; then $(RM) $(OBJS); else :; fi
RM = rm -f
CP = cp
-MV = mv
+MV = mv -f
CHMOD=chmod
RANLIB = @RANLIB@
ARCHIVE = @ARCHIVE@
+Sun Jul 3 07:48:04 1994 Tom Yu (tlyu at dragons-lair)
+
+ * Makefile.in: cleaning up to not spew ignored errors
+
Wed Jun 22 18:47:36 1994 Mark Eichin (eichin@tweedledumber.cygnus.com)
* com_err.h: Only set STDARG_PROTOTYPES based on STDC if it isn't
all:: libcom_err.a
libcom_err.a: $(LIBOBJS)
- $(RM) $@.bak
- -mv $@ $@.bak
+ if test -f $@; then $(RM) $@.bak; $(MV) $@ $@.bak; else :; fi;
$(ARCHIVE) $@ $(LIBOBJS)
$(RANLIB) $@
+Sun Jul 3 07:48:43 1994 Tom Yu (tlyu at dragons-lair)
+
+ * Makefile.in: changing things to now spew ignored errors.
+
Wed Jun 22 18:51:50 1994 Mark Eichin (eichin@cygnus.com)
* configure.in: ss_err.h is *not* a SrcHeader. Note that there is
depend:: ss_err.h
ct.tab.c ct.tab.h: ct.y
- rm -f ct.tab.* y.*
+ $(RM) ct.tab.* y.*
yacc -d $(srcdir)/ct.y
- mv -f y.tab.c ct.tab.c
- mv -f y.tab.h ct.tab.h
+ $(MV) y.tab.c ct.tab.c
+ $(MV) y.tab.h ct.tab.h
# install_library_target(ss,$(OBJS),$(SRCS),)
all:: libss.a
libss.a: $(OBJS)
- $(RM) $@.bak
- -$(MV) $@ $@.bak
+ if test -f $@; then $(RM) $@.bak; $(MV) $@ $@.bak; else :; fi
$(ARCHIVE) $@ $(OBJS)
$(RANLIB) $@