1999-03-29 Tom Tromey <tromey@cygnus.com>
+ * depend2.am (DEP_@FPFX@COMPILE): Use `!=' and not `-ne'.
+
* compile.am (.c.obj): Also disabled when dependency tracking
enabled.
* depend2.am (@EXT@.obj): New target.
## automake's `.am' file reader. This is a convenience macro a user
## can use to run a compilation. You should set the shell variables
## `file' and `compile' first.
-DEP_@FPFX@COMPILE = $(DEP_@FPFX@PRECOMP); echo " $$compile -c $$file"; $$compile $(DEP_@FPFX@FLAG) -c $$file; status=$$?; if test "$$status" -ne 0; then exit $$status; else $(DEP_@FPFX@POSTCOMP); fi
+DEP_@FPFX@COMPILE = $(DEP_@FPFX@PRECOMP); echo " $$compile -c $$file"; $$compile $(DEP_@FPFX@FLAG) -c $$file; status=$$?; if test "$$status" != 0; then exit $$status; else $(DEP_@FPFX@POSTCOMP); fi
@EXT@.o:
@file='$<'; compile='$(@PFX@COMPILE)'; \