mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 22:25:46 -04:00
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:
parent
e41b085fc9
commit
b2ca8cbfde
13 changed files with 75 additions and 165 deletions
|
@ -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
|
||||
|
|
3
lumps/textures/freedm/.gitignore
vendored
3
lumps/textures/freedm/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
texture1.lmp
|
||||
pnames.lmp
|
||||
pnames.txt
|
4
lumps/textures/phase1/.gitignore
vendored
4
lumps/textures/phase1/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
|||
texture1.lmp
|
||||
texture2.lmp
|
||||
pnames.lmp
|
||||
pnames.txt
|
3
lumps/textures/phase2/.gitignore
vendored
3
lumps/textures/phase2/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
texture1.lmp
|
||||
pnames.lmp
|
||||
pnames.txt
|
Loading…
Add table
Add a link
Reference in a new issue