diff --git a/buildcfg.txt b/buildcfg.txt index 90f28378..f03d35fc 100644 --- a/buildcfg.txt +++ b/buildcfg.txt @@ -7,7 +7,7 @@ ; -DULTDOOM to build for ultimate doom ; -DSHAREWARE to build for shareware doom ; -; Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +; Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 ; Contributors to the Freedoom project. All rights reserved. ; ; Redistribution and use in source and binary forms, with or without @@ -547,11 +547,15 @@ D_DM2INT ; List of Pictures (with insertion point) [graphics] +#ifdef ULTDOOM +TITLEPIC 0 0 = doomuttl +#else #ifdef FREEDM TITLEPIC 0 0 = dmttl #else TITLEPIC 0 0 = doomttl #endif +#endif #ifdef DOOM2 HELP 0 0 diff --git a/graphics/doomuttl.gif b/graphics/doomuttl.gif new file mode 120000 index 00000000..6afc1be1 --- /dev/null +++ b/graphics/doomuttl.gif @@ -0,0 +1 @@ +titlepic/ultdoom.gif \ No newline at end of file diff --git a/graphics/titlepic/Makefile b/graphics/titlepic/Makefile index 4d48ec0d..5cb2c420 100644 --- a/graphics/titlepic/Makefile +++ b/graphics/titlepic/Makefile @@ -1,4 +1,4 @@ -titlepic: freedoom.gif freedm.gif +titlepic: freedoom.gif freedm.gif ultdoom.gif freedoom.gif: titlepic.gif ./create_caption Freedoom $@ @@ -6,7 +6,10 @@ freedoom.gif: titlepic.gif freedm.gif: titlepic.gif ./create_caption FreeDM $@ +ultdoom.gif: titlepic.gif + ./create_caption "\"Ultimate Freedoom\"" $@ + clean: - rm -f freedm.gif freedoom.gif + rm -f freedm.gif freedoom.gif ultdoom.gif .PHONY: clean