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

Commit a29da16

Browse files
authored
Merge pull request #13 from nnethercote/fix-touch-targets
Fix the `touch` make targets.
2 parents 7fd9fda + 7c74a6f commit a29da16

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)