From 16b7ab969202d64d602d364a20a0bc6fc2afdbb7 Mon Sep 17 00:00:00 2001 From: tjw Date: Tue, 22 Aug 2006 16:30:04 +0000 Subject: * Add SVN version string to client console (clean up last commit) git-svn-id: svn://svn.icculus.org/quake3/trunk@859 edf5b092-35ff-0310-97b2-ce42778d08ea --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b875388..9f8a94e 100644 --- a/Makefile +++ b/Makefile @@ -140,10 +140,11 @@ ifeq ($(wildcard .svn),.svn) ifneq ($(SVN_REV),) SVN_VERSION=$(VERSION)_SVN$(SVN_REV) USE_SVN=1 - else - SVN_VERSION=$(VERSION) endif endif +ifneq ($(USE_SVN),1) + SVN_VERSION=$(VERSION) +endif ############################################################################# @@ -726,7 +727,7 @@ ifeq ($(GENERATE_DEPENDENCIES),1) endif endif -ifneq ($(USE_SVN),) +ifeq ($(USE_SVN),1) BASE_CFLAGS += -DSVN_VERSION=\\\"$(SVN_VERSION)\\\" endif @@ -1040,7 +1041,7 @@ endif $(B)/client/cl_cgame.o : $(CDIR)/cl_cgame.c; $(DO_CC) $(B)/client/cl_cin.o : $(CDIR)/cl_cin.c; $(DO_CC) $(B)/client/cl_console.o : $(CDIR)/cl_console.c; $(DO_CC) -ifneq ($(USE_SVN),) +ifeq ($(USE_SVN),1) $(B)/client/cl_console.o : .svn/entries endif $(B)/client/cl_input.o : $(CDIR)/cl_input.c; $(DO_CC) -- cgit v1.2.3