aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/makefile/input.rs5
-rw-r--r--src/makefile/token.rs10
2 files changed, 14 insertions, 1 deletions
diff --git a/src/makefile/input.rs b/src/makefile/input.rs
index e5473a1..9c895e1 100644
--- a/src/makefile/input.rs
+++ b/src/makefile/input.rs
@@ -474,7 +474,6 @@ impl<'a, 'parent, R: BufRead> MakefileReader<'a, 'parent, R> {
let (targets, not_targets) = line_tokens
.split_once(':')
.ok_or_else(|| eyre!("read_rule couldn't find a ':' on line {}", line_number))?;
- // TODO handle rule-specific variables
let targets = self.expand_macros(&targets)?;
let targets = targets.split_whitespace().collect::<Vec<_>>();
let (prerequisites, mut commands) = match not_targets.split_once(';') {
@@ -484,6 +483,10 @@ impl<'a, 'parent, R: BufRead> MakefileReader<'a, 'parent, R> {
}
None => (not_targets, vec![]),
};
+ if prerequisites.contains_text("=") {
+ log::error!("rule-specific macros are not implemented yet");
+ return Ok(());
+ }
let prerequisites = self.expand_macros(&prerequisites)?;
let prerequisites = prerequisites
.split_whitespace()
diff --git a/src/makefile/token.rs b/src/makefile/token.rs
index 63c48d9..294e80d 100644
--- a/src/makefile/token.rs
+++ b/src/makefile/token.rs
@@ -134,6 +134,16 @@ impl TokenString {
_ => false,
}
}
+
+ pub fn contains_text(&self, pattern: &str) -> bool {
+ self.0.iter().any(|x| {
+ if let Token::Text(x) = x {
+ x.contains(pattern)
+ } else {
+ false
+ }
+ })
+ }
}
impl fmt::Display for TokenString {