From 36796d906eddeba7a766d49466132c57c47a1718 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Thu, 24 Jan 2008 08:14:07 +0100 Subject: [PATCH] Remove some development code from makefile Remove the -g debug flag from the CFLAGS and make the version 0.5.0 again (instead of 0.5.0+git). --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 2e8a68f..354c80f 100644 --- a/makefile +++ b/makefile @@ -20,7 +20,7 @@ # CC = gcc -RELEASE = 0.5.0+git +RELEASE = 0.5.0 TARGET ?= default @@ -28,7 +28,7 @@ PREFIX ?= usr/local/ BINARY_INSTALL_DIR ?= $(PREFIX)/bin LIBS = -CFLAGS += -Wall -DVERSION=\"$(RELEASE)\" -g +CFLAGS += -Wall -DVERSION=\"$(RELEASE)\" ifeq ($(DEBUG),1) CFLAGS += -DDEBUG -- 2.11.4.GIT