mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
build: Fix Makefile dependencies for pnames.txt.
The wadinfo.txt files #include the pnames.txt file generated by the texture builder: because of this, we must build subdirectories before building the wadinfo.txt files.
This commit is contained in:
parent
46568382e9
commit
92e475dc40
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -60,13 +60,13 @@ lumps/freedoom.lmp lumps/freedm.lmp: force
|
|||
|
||||
# update wadinfo.txt
|
||||
|
||||
wadinfo.txt: buildcfg.txt force
|
||||
wadinfo.txt: buildcfg.txt subdirs force
|
||||
$(CPP) -P -DDOOM2 < $< | scripts/wadinfo-builder.py > $@
|
||||
wadinfo_phase1.txt: buildcfg.txt force
|
||||
wadinfo_phase1.txt: buildcfg.txt subdirs force
|
||||
$(CPP) -P -DDOOM1 -DULTDOOM < $< | scripts/wadinfo-builder.py -dummy > $@
|
||||
wadinfo_phase2.txt: buildcfg.txt force
|
||||
wadinfo_phase2.txt: buildcfg.txt subdirs force
|
||||
$(CPP) -P -DDOOM2 < $< | scripts/wadinfo-builder.py -dummy > $@
|
||||
wadinfo_freedm.txt : buildcfg.txt force
|
||||
wadinfo_freedm.txt : buildcfg.txt subdirs force
|
||||
$(CPP) -P -DFREEDM < $< | scripts/wadinfo-builder.py -dummy > $@
|
||||
|
||||
%.wad.gz: %.wad
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue