diff options
author | Sam Clegg <sbc@chromium.org> | 2018-05-21 16:42:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-21 16:42:12 -0700 |
commit | 6e56ef195d01936c0c7f7a6d1c0f5d1c7e2c2e52 (patch) | |
tree | 4317b5371cd74c0b62b3bec684f90affb00714e0 /.gitignore | |
parent | d0ce93f8d7a08017618839498a9b920bbb132267 (diff) | |
download | binaryen-6e56ef195d01936c0c7f7a6d1c0f5d1c7e2c2e52.tar.gz binaryen-6e56ef195d01936c0c7f7a6d1c0f5d1c7e2c2e52.tar.bz2 binaryen-6e56ef195d01936c0c7f7a6d1c0f5d1c7e2c2e52.zip |
Cleanup .gitignore (#1555)
As a followup I want to remove the test generated files from
here by having the tests write elsewhere.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/.gitignore b/.gitignore index 675ba4cc7..0673dbb79 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,4 @@ -bin/wasm-shell -bin/wasm-opt -bin/asm2wasm -bin/wasm2asm -bin/s2wasm -bin/wasm-as -bin/wasm-dis -lib/libbinaryen.so -lib/libbinaryen.dylib -*.a +*.pyc *~ *.diff @@ -32,7 +23,7 @@ test/wasm-torture-s-*.tbz2 test/wasm-install/ test/validator/*.wasm -*.pyc +# files related to building in-tree CMakeFiles/ CMakeCache.txt Makefile @@ -40,15 +31,22 @@ cmake_install.cmake *.ninja .ninja_deps .ninja_log +bin/wasm-shell +bin/wasm-opt +bin/asm2wasm +bin/wasm2asm +bin/s2wasm +bin/wasm-as +bin/wasm-dis +lib/ +# files related to windows build .vs/ *.vcxproj* *.dir/ *.sln *.sdf *.VC.opendb -bin/ -lib/ Win32/ # macOS |