Skip to content

Commit

Permalink
define the product version in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lnussel committed May 6, 2008
1 parent 4e30f4c commit d7bdf4b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 27 deletions.
29 changes: 9 additions & 20 deletions Makefile
Expand Up @@ -168,27 +168,17 @@ OPENAL_LIBS=$(shell pkg-config --libs openal)
SDL_CFLAGS=$(shell pkg-config --cflags sdl|sed 's/-Dmain=SDL_main//')
SDL_LIBS=$(shell pkg-config --libs sdl)

# extract version info

ifeq ($(BUILD_STANDALONE),1)
VERSION=$(shell grep "\#define *PRODUCT_VERSION" $(CMDIR)/q_shared.h | head -n 1 | \
sed -e 's/[^"]*"\(.*\)"/\1/')
else
VERSION=$(shell grep "\#define *PRODUCT_VERSION" $(CMDIR)/q_shared.h | tail -n 1 | \
sed -e 's/[^"]*"\(.*\)"/\1/')
endif
# version info
VERSION=1.35

USE_SVN=
ifeq ($(wildcard .svn),.svn)
SVN_REV=$(shell LANG=C svnversion .)
ifneq ($(SVN_REV),)
SVN_VERSION=$(VERSION)_SVN$(SVN_REV)
VERSION:=$(VERSION)_SVN$(SVN_REV)
USE_SVN=1
endif
endif
ifneq ($(USE_SVN),1)
SVN_VERSION=$(VERSION)
endif


#############################################################################
Expand Down Expand Up @@ -801,9 +791,7 @@ else
DEPEND_CFLAGS =
endif

ifeq ($(USE_SVN),1)
BASE_CFLAGS += -DSVN_VERSION=\\\"$(SVN_VERSION)\\\"
endif
BASE_CFLAGS += -DPRODUCT_VERSION=\\\"$(VERSION)\\\"

ifeq ($(V),1)
echo_cmd=@:
Expand Down Expand Up @@ -918,6 +906,7 @@ targets: makedirs
@echo "Building ioquake3 in $(B):"
@echo " PLATFORM: $(PLATFORM)"
@echo " ARCH: $(ARCH)"
@echo " VERSION: $(VERSION)"
@echo " COMPILE_PLATFORM: $(COMPILE_PLATFORM)"
@echo " COMPILE_ARCH: $(COMPILE_ARCH)"
@echo " CC: $(CC)"
Expand Down Expand Up @@ -2011,10 +2000,10 @@ else
endif

dist:
rm -rf ioquake3-$(SVN_VERSION)
svn export . ioquake3-$(SVN_VERSION)
tar --owner=root --group=root --force-local -cjf ioquake3-$(SVN_VERSION).tar.bz2 ioquake3-$(SVN_VERSION)
rm -rf ioquake3-$(SVN_VERSION)
rm -rf ioquake3-$(VERSION)
svn export . ioquake3-$(VERSION)
tar --owner=root --group=root --force-local -cjf ioquake3-$(VERSION).tar.bz2 ioquake3-$(VERSION)
rm -rf ioquake3-$(VERSION)

#############################################################################
# DEPENDENCIES
Expand Down
8 changes: 1 addition & 7 deletions code/qcommon/q_shared.h
Expand Up @@ -28,23 +28,17 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

#ifdef STANDALONE
#define PRODUCT_NAME "iofoo3"
#define PRODUCT_VERSION "-1"
#define BASEGAME "foobar"
#define CLIENT_WINDOW_TITLE "changeme"
#define CLIENT_WINDOW_MIN_TITLE "changeme2"
#else
#define PRODUCT_NAME "ioq3"
#define PRODUCT_VERSION "1.35"
#define BASEGAME "baseq3"
#define CLIENT_WINDOW_TITLE "ioquake3"
#define CLIENT_WINDOW_MIN_TITLE "ioq3"
#endif

#ifdef SVN_VERSION
# define Q3_VERSION PRODUCT_NAME " " SVN_VERSION
#else
# define Q3_VERSION PRODUCT_NAME " " PRODUCT_VERSION
#endif
#define Q3_VERSION PRODUCT_NAME " " PRODUCT_VERSION

#define MAX_TEAMNAME 32

Expand Down

0 comments on commit d7bdf4b

Please sign in to comment.