diff options
author | Michiel Sikma <michiel@sikma.org> | 2016-01-21 10:36:01 +0100 |
---|---|---|
committer | Michiel Sikma <michiel@sikma.org> | 2016-01-21 10:36:01 +0100 |
commit | 29bd7031a7e33fcb87a20fde393fcb3323a17232 (patch) | |
tree | 5d8ea33676c8d23e68e8485b407d929454ad8404 /Global/Lazarus.gitignore | |
parent | c9200696fb2325d82c7816cc5b6d1e77a90036b0 (diff) | |
parent | e4c0ed3c209b75d63b28d042e6d360e502dc7e40 (diff) | |
download | gitignore-29bd7031a7e33fcb87a20fde393fcb3323a17232.tar.gz gitignore-29bd7031a7e33fcb87a20fde393fcb3323a17232.zip |
Merge remote-tracking branch 'upstream/master' into patch-1
Diffstat (limited to 'Global/Lazarus.gitignore')
-rw-r--r-- | Global/Lazarus.gitignore | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/Global/Lazarus.gitignore b/Global/Lazarus.gitignore index 3ef747d7..b32943f1 100644 --- a/Global/Lazarus.gitignore +++ b/Global/Lazarus.gitignore @@ -1,15 +1,30 @@ -#ignore backup files -backup/ - -#ignore files generated by the compiler -lib/ +# Lazarus compiler-generated binaries (safe to delete) +*.exe +*.dll +*.so +*.dylib +*.lrs +*.res *.compiled +*.dbg +*.ppu *.o *.or -*.ppu +*.a -#ignore debug information files -*.dbg +# Lazarus autogenerated files (duplicated info) +*.rst +*.rsj +*.lrt -#exclude executable output in windows -*.exe +# Lazarus local files (user-specific info) +*.lps + +# Lazarus backups and unit output folders. +# These can be changed by user in Lazarus/project options. +backup/ +*.bak +lib/ + +# Application bundle for Mac OS +*.app/ |