blob: 3300a424a38c6bf84207c1985f0c482b954fb74f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- Makefile 2005-02-17 05:28:24.000000000 -0600
+++ Makefile-new 2005-10-12 20:26:29.000000000 -0500
@@ -42,12 +42,12 @@
check: test
test: bzip2
@cat words1
- ./bzip2 -1 < sample1.ref > sample1.rb2
- ./bzip2 -2 < sample2.ref > sample2.rb2
- ./bzip2 -3 < sample3.ref > sample3.rb2
- ./bzip2 -d < sample1.bz2 > sample1.tst
- ./bzip2 -d < sample2.bz2 > sample2.tst
- ./bzip2 -ds < sample3.bz2 > sample3.tst
+ $(TESTENV) ./bzip2 -1 < sample1.ref > sample1.rb2
+ $(TESTENV) ./bzip2 -2 < sample2.ref > sample2.rb2
+ $(TESTENV) ./bzip2 -3 < sample3.ref > sample3.rb2
+ $(TESTENV) ./bzip2 -d < sample1.bz2 > sample1.tst
+ $(TESTENV) ./bzip2 -d < sample2.bz2 > sample2.tst
+ $(TESTENV) ./bzip2 -ds < sample3.bz2 > sample3.tst
cmp sample1.bz2 sample1.rb2
cmp sample2.bz2 sample2.rb2
cmp sample3.bz2 sample3.rb2
|