Organize .gitignore

Organize .gitignore by moving all patterns into a top level sorted
.gitignore file. With this change both "git status" and
"git-ls-ignore-index" should return cleanly. The later checks if any
files in the index are ignored.
This commit is contained in:
Steven Elliott 2019-09-05 07:09:47 -05:00
parent e41b085fc9
commit b2ca8cbfde
13 changed files with 75 additions and 165 deletions

View file

@ -4,6 +4,7 @@ CPP=../../scripts/simplecpp
all: phase1/texture1.lmp phase2/texture1.lmp freedm/texture1.lmp
phase1/texture1.lmp: textures.cfg
@mkdir phase1
$(CPP) -DDOOM1_VERSIONS < textures.cfg | \
./build-textures -compat_texture1=doom1/texture1.txt \
-compat_texture2=doom1/texture2.txt \
@ -18,6 +19,7 @@ phase1/texture1.lmp: textures.cfg
cp phase1/pnames.lmp ../fd1pname.lmp
phase2/texture1.lmp: textures.cfg
@mkdir phase2
$(CPP) < textures.cfg | \
./build-textures -compat_texture1=doom2/texture1.txt \
-compat_pnames=doom2/pnames.txt \
@ -29,6 +31,7 @@ phase2/texture1.lmp: textures.cfg
cp phase2/pnames.lmp ../fd2pname.lmp
freedm/texture1.lmp: textures.cfg
@mkdir freedm
$(CPP) -DFREEDM < textures.cfg | \
./build-textures -compat_texture1=doom2/texture1.txt \
-compat_pnames=doom2/pnames.txt \
@ -47,4 +50,4 @@ clean:
$(RM) ../fd1txtr1.lmp ../fd1txtr2.lmp ../fd1pname.lmp \
../fd2txtr1.lmp ../fd2pname.lmp \
../fdmtxtr1.lmp ../fdmpname.lmp
-rmdir phase1 phase2 freedm

View file

@ -1,3 +0,0 @@
texture1.lmp
pnames.lmp
pnames.txt

View file

@ -1,4 +0,0 @@
texture1.lmp
texture2.lmp
pnames.lmp
pnames.txt

View file

@ -1,3 +0,0 @@
texture1.lmp
pnames.lmp
pnames.txt