From bdc0157ea6020dd8361480b2272dbcbfc43c2bcf Mon Sep 17 00:00:00 2001 From: Allanis Date: Sun, 3 Feb 2013 21:38:48 +0000 Subject: [PATCH] [Change] Simpler to change version. --- .gitignore | 1 + bin/Makefile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fe281e9..37a7842 100644 --- a/.gitignore +++ b/.gitignore @@ -25,5 +25,6 @@ *.pdf *bin/Lephisto *bin/data +*pack diff --git a/bin/Makefile b/bin/Makefile index 1a56027..422d80d 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,7 +1,10 @@ DEBUG = 1 APPNAME = Lephisto -VERSION = -DVMAJOR=0 -DVMINOR=0 -DVREV=1 +VMAJOR = 0 +VMINOR = 0 +VREV = 1 +VERSION = -DVMAJOR=$(VMAJOR) -DVMINOR=$(VMINOR) -DVREV=$(VREV) OBJS := $(shell find ../src/ -name '*.c' -print) OBJS := $(OBJS:%.c=%.o)