diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2021-02-20 22:33:16 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-02-21 10:35:21 +0000 |
commit | 379e128a3a4f5343cbd4a9f1be3538cf76af82e2 (patch) | |
tree | 48efc58097c07f988ddb000538ce4d84ccdd0f6c | |
parent | 68b6505a40529a34f8d07129686a170d5d0a2116 (diff) | |
download | busybox-w32-379e128a3a4f5343cbd4a9f1be3538cf76af82e2.tar.gz busybox-w32-379e128a3a4f5343cbd4a9f1be3538cf76af82e2.tar.bz2 busybox-w32-379e128a3a4f5343cbd4a9f1be3538cf76af82e2.zip |
.gitignore: support building on Windows
These items are already listed, albeit without `.exe` suffix.
Presumably, this is because BusyBox-w32 is traditionally cross-compiled
on Linux.
However, we are about to introduce a CI build definition that builds
BusyBox-w32 in MSYS2 (using mingw-w64-gcc), meaning that those
executables might very well exist _with_ `.exe` suffix.
Let's ignore those, too.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rw-r--r-- | applets/.gitignore | 3 | ||||
-rw-r--r-- | scripts/basic/.gitignore | 3 | ||||
-rw-r--r-- | scripts/kconfig/.gitignore | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/applets/.gitignore b/applets/.gitignore index 459938d67..970bb90a9 100644 --- a/applets/.gitignore +++ b/applets/.gitignore | |||
@@ -1,3 +1,6 @@ | |||
1 | /applet_tables | 1 | /applet_tables |
2 | /usage | 2 | /usage |
3 | /usage_pod | 3 | /usage_pod |
4 | /applet_tables.exe | ||
5 | /usage.exe | ||
6 | /usage_pod.exe | ||
diff --git a/scripts/basic/.gitignore b/scripts/basic/.gitignore index d91e941a4..3d20e4f15 100644 --- a/scripts/basic/.gitignore +++ b/scripts/basic/.gitignore | |||
@@ -2,3 +2,6 @@ hash | |||
2 | fixdep | 2 | fixdep |
3 | docproc | 3 | docproc |
4 | split-include | 4 | split-include |
5 | /docproc.exe | ||
6 | /fixdep.exe | ||
7 | /split-include.exe | ||
diff --git a/scripts/kconfig/.gitignore b/scripts/kconfig/.gitignore index b49584c93..aa9c7d637 100644 --- a/scripts/kconfig/.gitignore +++ b/scripts/kconfig/.gitignore | |||
@@ -17,3 +17,4 @@ mconf | |||
17 | qconf | 17 | qconf |
18 | gconf | 18 | gconf |
19 | kxgettext | 19 | kxgettext |
20 | /conf.exe | ||