1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# The local makefile should be ignored:
Makefile.local
# And the description file and the grs which are generated automatically
openmsx.obm
openmsx-*
openmsx.tar
# Ignore intermediate files created by the Makefile:
docs/license.txt
docs/changelog.txt
docs/readme.txt
# Ignore directories from bundle creation / install:
openmsx-nightly*
openmsx
#The .renum dir
.renum
# Ignore frequent development left-overs like
# editor backups, patches, rejects etc. pp
*.orig
*.bak
*.log
*.rej
*.diff
*.patch
*.kate-swp
# Files created by Mac image preview and file browser:
.DS_Store
Thumbs.db
|