printerfw/.gitignore

187 lines
2.6 KiB
Plaintext
Raw Permalink Normal View History

2016-06-17 17:47:07 -07:00
#
# Marlin 3D Printer Firmware
2020-02-03 06:00:57 -08:00
# Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2016-06-17 17:47:07 -07:00
#
# Based on Sprinter and grbl.
2019-06-27 21:57:50 -07:00
# Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2016-06-17 17:47:07 -07:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Our automatic versioning scheme generates the following file
# NEVER put it in the repository
_Version.h
2016-06-17 17:47:07 -07:00
#
# OS
#
2015-01-03 02:56:10 -08:00
applet/
2016-06-16 17:50:51 -07:00
*.DS_Store
2016-06-17 17:47:07 -07:00
#
# Misc
#
2015-01-03 02:56:10 -08:00
*~
*.orig
*.rej
*.bak
2015-01-03 04:52:52 -08:00
*.idea
2016-03-22 09:05:45 -07:00
*.s
*.i
*.ii
2016-06-16 17:50:51 -07:00
*.swp
2017-03-18 08:17:08 -07:00
tags
2016-06-16 17:50:51 -07:00
2016-06-17 17:47:07 -07:00
#
# C++
#
2016-06-16 17:50:51 -07:00
# Compiled Object files
*.slo
*.lo
*.o
*.obj
2017-05-25 21:25:04 -07:00
*.ino.cpp
2016-06-16 17:50:51 -07:00
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
2016-06-17 17:47:07 -07:00
#
# C
#
2016-06-16 17:50:51 -07:00
# Object files
*.o
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
2017-05-09 10:24:40 -07:00
# PlatformIO files/dirs
.pio*
.pioenvs
.piolibdeps
.clang_complete
.gcc-flags.json
/lib/
2017-03-17 08:13:46 -07:00
# Workaround for Deviot+platformio quirks
Marlin/lib
Marlin/platformio.ini
Marlin/*/platformio.ini
Marlin/*/*/platformio.ini
Marlin/*/*/*/platformio.ini
Marlin/*/*/*/*/platformio.ini
Marlin/.travis.yml
Marlin/*/.travis.yml
Marlin/*/*/.travis.yml
Marlin/*/*/*/.travis.yml
Marlin/*/*/*/*/.travis.yml
Marlin/.gitignore
Marlin/*/.gitignore
Marlin/*/*/.gitignore
Marlin/*/*/*/.gitignore
Marlin/*/*/*/*/.gitignore
Marlin/readme.txt
Marlin/*/readme.txt
Marlin/*/*/readme.txt
Marlin/*/*/*/readme.txt
Marlin/*/*/*/*/readme.txt
# Secure Credentials
Configuration_Secure.h
2017-03-17 08:13:46 -07:00
#Visual Studio
*.sln
*.vcxproj
*.vcxproj.user
2017-03-17 08:13:46 -07:00
*.vcxproj.filters
2017-09-27 10:49:05 -07:00
Release/
Debug/
__vm/
.vs/
vc-fileutils.settings
2017-08-09 10:41:47 -07:00
#Visual Studio Code
.vscode
2018-03-08 23:18:05 -08:00
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
2018-02-24 13:48:34 -08:00
.vscode/*.db
#cmake
CMakeLists.txt
2017-09-06 04:28:32 -07:00
src/CMakeLists.txt
CMakeListsPrivate.txt
#CLion
cmake-build-*
2019-05-04 12:08:53 -07:00
#Eclipse
.project
.cproject
.pydevproject
.settings
.classpath
#Python
__pycache__