diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-20 19:30:49 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-20 19:30:49 -0600 |
commit | e0db38988af0f606a6aea1999d89b3abf62dae24 (patch) | |
tree | 3249c02a6247877227f70679ae29ad195dfc961d /src/makefile/mod.rs | |
parent | b233781efde7ac6f0e1a88bbf6003ac1103045b1 (diff) | |
download | makers-e0db38988af0f606a6aea1999d89b3abf62dae24.tar.gz makers-e0db38988af0f606a6aea1999d89b3abf62dae24.zip |
skip more things on posix that aren't needed there
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r-- | src/makefile/mod.rs | 6 |
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, } |