mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-03 01:25:45 -04:00
build: Remove wadinfo.txt.
We no longer build the freedoom.wad resource WAD so this is redundant.
(It was removed in bfb95753bd
).
This commit is contained in:
parent
86a6d7300c
commit
9f082e5ffa
1 changed files with 12 additions and 13 deletions
25
Makefile
25
Makefile
|
@ -33,17 +33,6 @@ force:
|
||||||
lumps/freedoom.lmp lumps/freedm.lmp: force
|
lumps/freedoom.lmp lumps/freedm.lmp: force
|
||||||
echo $(VERSION) > $@
|
echo $(VERSION) > $@
|
||||||
|
|
||||||
# update wadinfo.txt
|
|
||||||
|
|
||||||
wadinfo.txt: buildcfg.txt subdirs lumps/freedoom.lmp
|
|
||||||
$(CPP) -P -DDOOM2 < $< > $@
|
|
||||||
wadinfo_phase1.txt: buildcfg.txt subdirs lumps/freedoom.lmp
|
|
||||||
$(CPP) -P -DDOOM1 -DULTDOOM < $< > $@
|
|
||||||
wadinfo_phase2.txt: buildcfg.txt subdirs lumps/freedoom.lmp
|
|
||||||
$(CPP) -P -DDOOM2 < $< > $@
|
|
||||||
wadinfo_freedm.txt : buildcfg.txt subdirs lumps/freedoom.lmp lumps/freedm.lmp
|
|
||||||
$(CPP) -P -DFREEDM < $< > $@
|
|
||||||
|
|
||||||
# deutex doesnt allow redirects for the filenames in the texture
|
# deutex doesnt allow redirects for the filenames in the texture
|
||||||
# entries, so we have to change the texture1 symlink to point
|
# entries, so we have to change the texture1 symlink to point
|
||||||
# to whichever wad we are working on
|
# to whichever wad we are working on
|
||||||
|
@ -51,6 +40,9 @@ wadinfo_freedm.txt : buildcfg.txt subdirs lumps/freedoom.lmp lumps/freedm.lmp
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# freedm iwad
|
# freedm iwad
|
||||||
|
|
||||||
|
wadinfo_freedm.txt : buildcfg.txt subdirs lumps/freedoom.lmp lumps/freedm.lmp
|
||||||
|
$(CPP) -P -DFREEDM < $< > $@
|
||||||
|
|
||||||
$(FREEDM): wadinfo_freedm.txt subdirs
|
$(FREEDM): wadinfo_freedm.txt subdirs
|
||||||
@mkdir -p $(WADS)
|
@mkdir -p $(WADS)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
|
@ -59,6 +51,9 @@ $(FREEDM): wadinfo_freedm.txt subdirs
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# phase 1 (udoom) iwad
|
# phase 1 (udoom) iwad
|
||||||
|
|
||||||
|
wadinfo_phase1.txt: buildcfg.txt subdirs lumps/freedoom.lmp
|
||||||
|
$(CPP) -P -DDOOM1 -DULTDOOM < $< > $@
|
||||||
|
|
||||||
$(FREEDOOM1): wadinfo_phase1.txt subdirs
|
$(FREEDOOM1): wadinfo_phase1.txt subdirs
|
||||||
@mkdir -p $(WADS)
|
@mkdir -p $(WADS)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
|
@ -67,6 +62,9 @@ $(FREEDOOM1): wadinfo_phase1.txt subdirs
|
||||||
#---------------------------------------------------------
|
#---------------------------------------------------------
|
||||||
# phase 2 (doom2) iwad
|
# phase 2 (doom2) iwad
|
||||||
|
|
||||||
|
wadinfo_phase2.txt: buildcfg.txt subdirs lumps/freedoom.lmp
|
||||||
|
$(CPP) -P -DDOOM2 < $< > $@
|
||||||
|
|
||||||
$(FREEDOOM2): wadinfo_phase2.txt subdirs
|
$(FREEDOOM2): wadinfo_phase2.txt subdirs
|
||||||
@mkdir -p $(WADS)
|
@mkdir -p $(WADS)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
|
@ -103,8 +101,9 @@ endif
|
||||||
clean: wad-image-clean
|
clean: wad-image-clean
|
||||||
rm -f *.html deutex.log $(OBJS) \
|
rm -f *.html deutex.log $(OBJS) \
|
||||||
./COPYING.txt ./CREDITS.txt \
|
./COPYING.txt ./CREDITS.txt \
|
||||||
./wadinfo.txt ./wadinfo_phase1.txt \
|
./wadinfo_phase1.txt \
|
||||||
./wadinfo_phase2.txt ./wadinfo_freedm.txt \
|
./wadinfo_phase2.txt \
|
||||||
|
./wadinfo_freedm.txt \
|
||||||
./lumps/freedoom.lmp \
|
./lumps/freedoom.lmp \
|
||||||
./lumps/freedm.lmp
|
./lumps/freedm.lmp
|
||||||
-rmdir $(WADS)
|
-rmdir $(WADS)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue