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

Commit 744f6f3

Browse files
authored
Merge pull request #16 from nnethercote/more-uniform-makefiles
Increase uniformity of makefiles
2 parents a29da16 + d0cd62c commit 744f6f3

File tree

10 files changed

+30
-13
lines changed

10 files changed

+30
-13
lines changed

helloworld/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[package]
2+
name = "helloworld"
3+
version = "0.1.0"
4+
5+
[dependencies]

helloworld/makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
all:
2-
$(RUSTC) hello.rs -Ztime-passes -Zinput-stats
2+
$(CARGO_BUILD)
33
touch:
4-
rm hello
4+
rm -rf target/debug/*
55
clean:
6-
rm hello
6+
rm target -rf
7+
rm Cargo.lock
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[package]
2+
name = "issue-32062-equality-relations-complexity"
3+
version = "0.1.0"
4+
5+
[dependencies]
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
all:
2-
$(RUSTC) issue-32062.rs -Ztime-passes -Zinput-stats
2+
$(CARGO_BUILD)
33
touch:
4-
rm issue-32062
4+
rm -rf target/debug/*
55
clean:
6-
rm issue-32062
6+
rm target -rf
7+
rm Cargo.lock
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[package]
2+
name = "issue-32278-big-array-of-strings"
3+
version = "0.1.0"
4+
5+
[dependencies]
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
all:
2-
$(RUSTC) big-array-of-strings.rs -Ztime-passes -Zinput-stats
2+
$(CARGO_BUILD)
33
touch:
4-
rm big-array-of-strings
4+
rm -rf target/debug/*
55
clean:
6-
rm big-array-of-strings
6+
rm target -rf
7+
rm Cargo.lock

syntex-0.42.2/makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
all:
22
$(CARGO_BUILD)
3-
43
touch:
5-
cargo clean
6-
4+
rm -rf target/debug/*
75
clean:
8-
cargo clean
6+
rm target -rf
7+
rm Cargo.lock

0 commit comments

Comments
 (0)