summaryrefslogtreecommitdiff
path: root/Rules
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-05-17 12:19:16 +0000
committerAndreas Jaeger <aj@suse.de>2000-05-17 12:19:16 +0000
commite656498ea979f746fa5e324c4cbd433a5a3de562 (patch)
tree58b7c6678d27915a200ecc02f04429d240b6ca56 /Rules
parente25054c49c92587a07de4badfe4b7e01ceb99858 (diff)
Update.
2000-05-17 Andreas Jaeger <aj@suse.de> * string/envz.h: Add pure attributes if possible. * string/argz.h: argz_count is a pure function. * string/strings.h: Add pure and const attributes if possible.
Diffstat (limited to 'Rules')
-rw-r--r--Rules10
1 files changed, 3 insertions, 7 deletions
diff --git a/Rules b/Rules
index adcddc6b44..d5cd34e65a 100644
--- a/Rules
+++ b/Rules
@@ -1,4 +1,4 @@
-# Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
+# Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@@ -118,14 +118,10 @@ endif
ifneq "$(strip $(tests) $(test-srcs))" ""
# These are the implicit rules for making test outputs
# from the test programs and whatever input files are present.
-$(objpfx)%.out: %.args $(objpfx)% %.input
- $($*-ENV) $(built-program-cmd) `cat $(word 1,$^)` < $(word 3,$^) > $@
-$(objpfx)%.out: %.args $(objpfx)%
- $($*-ENV) $(built-program-cmd) `cat $(word 1,$^)` > $@
$(objpfx)%.out: %.input $(objpfx)%
- $($*-ENV) $(built-program-cmd) < $(word 1,$^) > $@
+ $($*-ENV) $(built-program-cmd) $($*-ARGS) < $(word 1,$^) > $@
$(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence.
- $($*-ENV) $(built-program-cmd) > $@
+ $($*-ENV) $(built-program-cmd) $($*-ARGS) > $@
endif # tests
.PHONY: distclean realclean subdir_distclean subdir_realclean \