Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 7c74a6f

Browse files
committed
Fix the touch make targets.
Clearly these aren't getting wide used because most of them are wrong. Some of them name the wrong file, and some of them omit a necessary '-rf'.
1 parent 7fd9fda commit 7c74a6f

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

html5ever-2016-08-25/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

hyper.0.5.0/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

inflate-0.1.0/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all:
22
$(RUSTC) issue-32062.rs -Ztime-passes -Zinput-stats
33
touch:
4-
rm hello
4+
rm issue-32062
55
clean:
6-
rm hello
6+
rm issue-32062
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all:
22
$(RUSTC) big-array-of-strings.rs -Ztime-passes -Zinput-stats
33
touch:
4-
rm hello
4+
rm big-array-of-strings
55
clean:
6-
rm hello
6+
rm big-array-of-strings

jld-day15-parser/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

piston-image-0.10.3/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

regex.0.1.30/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

rust-encoding-0.3.0/makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all:
22
$(CARGO_BUILD)
33
touch:
4-
rm target/debug/*
4+
rm -rf target/debug/*
55
clean:
66
rm target -rf
77
rm Cargo.lock

0 commit comments

Comments
 (0)