aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/mod.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-20 19:30:49 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-20 19:30:49 -0600
commite0db38988af0f606a6aea1999d89b3abf62dae24 (patch)
tree3249c02a6247877227f70679ae29ad195dfc961d /src/makefile/mod.rs
parentb233781efde7ac6f0e1a88bbf6003ac1103045b1 (diff)
downloadmakers-e0db38988af0f606a6aea1999d89b3abf62dae24.tar.gz
makers-e0db38988af0f606a6aea1999d89b3abf62dae24.zip
skip more things on posix that aren't needed thereHEADcanon
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r--src/makefile/mod.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs
index 277fbd3..74f1f4b 100644
--- a/src/makefile/mod.rs
+++ b/src/makefile/mod.rs
@@ -31,10 +31,14 @@ mod token;
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum ItemSource {
- File { name: String, line: usize },
+ File {
+ name: String,
+ line: usize,
+ },
CommandLineOrMakeflags,
Environment,
Builtin,
+ #[cfg(feature = "full")]
FunctionCall,
}