aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/input.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-14 19:25:35 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-14 19:25:53 -0600
commiteb61a461411d54b08562ce04878ace57836f2a61 (patch)
tree7016f2cf166c51e2e6056ce1b96d1add1c5a4eaf /src/makefile/input.rs
parent7ac635054c43f28bf73233925ae13120b9ad86b8 (diff)
downloadmakers-eb61a461411d54b08562ce04878ace57836f2a61.tar.gz
makers-eb61a461411d54b08562ce04878ace57836f2a61.zip
always give a target with commands the first prereqs
Diffstat (limited to 'src/makefile/input.rs')
-rw-r--r--src/makefile/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/input.rs b/src/makefile/input.rs
index 03e7f18..5dda538 100644
--- a/src/makefile/input.rs
+++ b/src/makefile/input.rs
@@ -1163,8 +1163,8 @@ cursed:
#[test]
fn dependency_prepending_appending() -> R {
let file = "
-test: a
test: b
+test: a
\techo hi
test: c
";