diff options
author | Ryan Roden-Corrent <ryan@rcorre.net> | 2016-10-08 13:03:28 -0400 |
---|---|---|
committer | Ryan Roden-Corrent <ryan@rcorre.net> | 2016-10-08 13:05:21 -0400 |
commit | a280bb1386e9a0061591ffbde33cdd2682f2c5f4 (patch) | |
tree | 1c33d83916e4c23da3b14ef9fa63e5b3ced9afcc /.gitignore | |
parent | 606bce2a5601d6a124da33d007e071ed9d43ff45 (diff) | |
download | mc-a280bb1386e9a0061591ffbde33cdd2682f2c5f4.tar.gz |
Ignore all *.{o,a,use}.
Instead of ignoring these in certain directories, just ignore them
across the repo. Currently a number of such files generated during
build are not ignored.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,6 +1,3 @@ -test/*.o -test/*.use -test/*.use !test/*.myr libstd/sys*.myr !libstd/sys*+*.myr @@ -16,9 +13,9 @@ libstd/resolve.myr libstd/wait.myr rt/*.s !rt/*-*.s -*/*.o -*/*.use -*/*.a +*.o +*.use +*.a */.deps config.h config.mk |