From 223d7d9846bff4a9aaf6ba84f5662a1ee7ffa900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Fri, 15 Jun 2018 12:38:23 +0200 Subject: [PATCH] ignore/types: add Android makefile types The Android platform is gradually moving from Makefiles (*.mk) to Blueprint files (*.bp). Add support for both. See [1] for more information. 1. https://android.googlesource.com/platform/build/blueprint/+/master-soong --- ignore/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index d01d4f7..6fa2c5c 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -99,6 +99,7 @@ use {Error, Match}; const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("agda", &["*.agda", "*.lagda"]), ("aidl", &["*.aidl"]), + ("amake", &["*.mk", "*.bp"]), ("asciidoc", &["*.adoc", "*.asc", "*.asciidoc"]), ("asm", &["*.asm", "*.s", "*.S"]), ("avro", &["*.avdl", "*.avpr", "*.avsc"]),