diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-23 21:46:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-23 21:46:19 +0300 |
commit | 6375e293e9f456b8a204a54ad19ae775c2bb3dbd (patch) | |
tree | 4b1f71ef2b85891d0c29a4175aeb616e09acacff /.gitignore | |
download | mplint-6375e293e9f456b8a204a54ad19ae775c2bb3dbd.tar.gz mplint-6375e293e9f456b8a204a54ad19ae775c2bb3dbd.tar.bz2 mplint-6375e293e9f456b8a204a54ad19ae775c2bb3dbd.tar.xz mplint-6375e293e9f456b8a204a54ad19ae775c2bb3dbd.zip |
Initial version.
Now it have only one rule for dump all lines in file.
Nothing other is implimented.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ca6dfcd --- /dev/null +++ b/.gitignore @@ -0,0 +1,139 @@ +# files created by autoreconf +ABOUT-NLS +Makefile.in +aclocal.m4 +autom4te.cache +config.guess +config.h.in +config.h.in~ +config.rpath +config.sub +configure +depcomp +install-sh +m4/ +intl/ +missing +compile +po/Makefile.in.in +po/Makevars.template +po/Rules-quot +po/boldquot.sed +po/en@boldquot.header +po/en@quot.header +po/insert-header.sin +po/quot.sed +po/remove-potcdate.* +po/*.po~ + +# files created by configure +Makefile +config.h +config.log +config.status +config.status.lineno +po/POTFILES +.deps +stamp-h1 +/manaplus.spec +PKGBUILD +data/evol/evol.desktop +data/tmw/tmw.desktop + +# files created by CMake +CMakeFiles/ +CMakeCache.txt +CPackConfig.cmake +CPackSourceConfig.cmake +cmake_install.cmake +install_manifest.txt + +# files created during build +*.o +*.gmo +*.gcda +*.gcno +.dirstamp +po/stamp-po +src/mplint + +# files created during Windows build +.objs +*.dll +*.exe +manaplis.depend +manaplis.layout +stdout.txt + +# files copied in on Windows +include/* +lib/* +packaging/windows/upx/* +data/music/*.ogg + +# files created by Qt Creator +mana.creator.user* + +run/* +my/* +win/* +build/logs +build/make.log +build/make1.log +build/make2.log +build/gprof.png +build/gprof.txt +build/gprof.dot +build/gmon.out +build/out.txt + +# debian +debian/* +build-stamp + +# files created by gtags +GPATH +GRTAGS +GSYMS +GTAGS + +# tarballs generated by make dist +manaplus-*.tar.gz +manaplus-*.tar.bz2 +manaplus-*.tar.xz + +# generated for nsis build +translations/* + +# documentation generated by Doxygen +docs/SOURCE/html/* + +*.kdev4 + +gmon.out + +# patch files created by git +[0-9][0-9][0-9][0-9]-*.patch + +# backup files created by vi +*~ + +#temp file +.lineno + +#mac crap +.DS_Store +Xcode/ManaPlus.xcodeproj/xcuserdata +Xcode/ManaPlus.xcodeproj/project.xcworkspace/xcuserdata +Xcode/Release/ManaPlus.dmg +Xcode/Release/*.dmg +Xcode/Release/Manaplus_ssh.txt +Xcode/DerivedData/ +Xcode/Build/ +Xcode/Release/Release* + +/manaplus.depend +/manaplus.layout + +#english po +/po/en.po |