Skip to content

Commit

Permalink
added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
zeim839 committed Nov 19, 2024
1 parent e51bec9 commit 8ab1aeb
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Build files.
*.o

# Target
/src/nes-tools

# Dist
nes-tools-*.tar.gz

# Generated Makefiles
Makefile
/src/Makefile
/src/audio/Makefile

# config.h.in
/src/config.h

# Generated Directories
/build/
/bin/
/lib/
/obj/
/*.libs
/*.deps

# Autotools generated files
/aclocal.m4
/autom4te.cache/
/compile
/config.guess
/config.sub
/config.h
/config.h.in
/config.log
/config.status
/configure
/depcomp
/install-sh
/ltmain.sh
/missing
/stamp-h1

# Temporary files
*~
.DS_Store

# Ignore debugging files
vgcore.*
core.*

# Ignore user-specific configurations
/.idea/
/.vscode/
/*.iml

0 comments on commit 8ab1aeb

Please sign in to comment.