Add/fix copyright notices and adjust to latest GNU FDL.
[platform/upstream/coreutils.git] / tests / sort-time / Makefile
1 # Copyright (C) 1997 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 # 02110-1301, USA.
17
18 N = 1000000
19
20 dot30 = ..............................
21 dot31 = $(dot30).
22
23 safe_redirect_prologue = rm -f $@ $@-tmp
24 safe_redirect = $@-tmp && mv $@-tmp $@
25
26 time = /p/bin/time --verbose
27
28 all: t30 t31
29
30 t3%: in-3%
31         @$(safe_redirect_prologue)
32         $(time) sort $< > $(safe_redirect)
33
34 rand-digits: rand-gen
35         @$(safe_redirect_prologue)
36         ./$< --integer $(N) |tr -d '\012' > $(safe_redirect)
37
38 in-30: rand-digits
39         @$(safe_redirect_prologue)
40         perl -pe 's/($(dot30))/$$1\n/g' $< > $(safe_redirect)
41
42 in-31: rand-digits
43         @$(safe_redirect_prologue)
44         perl -pe 's/($(dot31))/$$1\n/g' $< > $(safe_redirect)
45
46 clean:
47         rm -f t30 t31 in-30 in-31
48
49 realclean: clean
50         rm -f rand-digits