Skip to content

Commit

Permalink
Improve gitignore rules to ignore most generated files
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Arndt <[email protected]>
  • Loading branch information
SpotlightKid committed Jan 12, 2019
1 parent cadfcf6 commit 9833a8b
Showing 1 changed file with 54 additions and 3 deletions.
57 changes: 54 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,61 @@
/config
/configure
/Makefile.in
/aclocal.m4
/autom4te.cache
/config
/config.log
/config.status
/configure
/libtool
/rtmidi-config
/rtmidi.pc
/m4

/Makefile
/Makefile.in
/doc/Makefile
/doc/Makefile.in
/tests/Makefile
/tests/Makefile.in

/doc/html
/doc/doxygen-build.stamp
/doc/doxygen/Doxyfile

/build*/

/.deps
/.libs
/tests/.deps
/tests/.libs

# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# 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

0 comments on commit 9833a8b

Please sign in to comment.