From 0a8a1c27bcba8544bc8e910bc19cd765992aac2f Mon Sep 17 00:00:00 2001 From: Christoph Badura Date: Sat, 29 Jun 2024 00:21:08 +0200 Subject: [PATCH] ignore: add Makefile.inc to make type The *BSD build systems make use of "Makefile.inc" a lot. Make the "make" type recognize this file by default. --- crates/ignore/src/default_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index 2cf8ad80..8e1e84ee 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -159,6 +159,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ "[Gg][Nn][Uu]makefile", "[Mm]akefile", "[Gg][Nn][Uu]makefile.am", "[Mm]akefile.am", "[Gg][Nn][Uu]makefile.in", "[Mm]akefile.in", + "[Mm]akefile.inc", "*.mk", "*.mak" ]), (&["mako"], &["*.mako", "*.mao"]),