diff options
author | Keyur Joshi | 2015-09-29 10:22:50 +0530 |
---|---|---|
committer | Keyur Joshi | 2015-09-29 10:22:50 +0530 |
commit | 3cccf754ab8c8b31e0d1c0a7fc31bff1fadb283f (patch) | |
tree | a967462511893d2f1570cf9511ec81403c40c494 | |
parent | e34332a406e4f3fba9b99c6f9ec5138edfcc6aa2 (diff) | |
download | FOSSEE-Optimization-toolbox-3cccf754ab8c8b31e0d1c0a7fc31bff1fadb283f.tar.gz FOSSEE-Optimization-toolbox-3cccf754ab8c8b31e0d1c0a7fc31bff1fadb283f.tar.bz2 FOSSEE-Optimization-toolbox-3cccf754ab8c8b31e0d1c0a7fc31bff1fadb283f.zip |
Created .gitignore
This will prevent compiled things from being uploaded to the repo. Only code will be uploaded to the repo.
However, this may require the user to use builder.sce to compile the library first and then loader.sce
-rw-r--r-- | .gitignore | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1bab62f --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Scilab generates these by itself upon running builder.sce +cleaner.sce +loader.sce +unloader.sce +*.bin + +# Libraries +lib*.c +*.so + +# Temporary files +*~ +*.swp + +# Other +*.pdf +*.gz |