From 1c34d4c32bf2524ec87a1b210b5aa77f3a280005 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Tue, 23 Jun 2009 19:59:46 -0700 Subject: [PATCH] titlepic: Make the ultimate target have its own title Right now it's called "Ultimate Freedoom"; a more original name should be given later down the line. Signed-off-by: Mike Swanson --- buildcfg.txt | 6 +++++- graphics/doomuttl.gif | 1 + graphics/titlepic/Makefile | 7 +++++-- 3 files changed, 11 insertions(+), 3 deletions(-) create mode 120000 graphics/doomuttl.gif 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