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)