From fd4dfd40a9d3201d710655175287cdabae7134a3 Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Fri, 3 Feb 2023 11:05:21 +0000 Subject: [PATCH] Tidy .gitignore --- .gitignore | 55 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index 0cffca23..3cc9f3c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1,24 @@ -*.log -*.dSYM -*/.build_*/* -*/bin/* -*.o +# XMOS bin files *.xe -*.vcd -*.swo +*.bin +*/bin/* + +# XMOS temp files +.build* +*.a +_build* +*.i *.s *.xi -*.i -*.bin -*~ -*.a -*.swp -*.*~ -*.pyc -.build* +*.o +*/.build_*/* + +# Temp files .DS_Store -test_results.csv -_build* -**/.venv/** -**/.vscode/** -**.egg-info -*.pdf -*tests/logs/* +*.*~ +*.swp +*~ +*.swo # waf build files .lock-waf_* @@ -36,3 +31,19 @@ xscope.xmt # Traces *.gtkw *.vcd + +# Host binaries +host_usb_mixer_control/xmos_mixer + +# Documentation build +*.pdf + +# Misc +*.log +*.dSYM +*.vcd +*.pyc +**/.venv/** +**/.vscode/** +**.egg-info +*tests/logs/*