aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a6c516a..62c42db 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,8 @@
+VERSION=0.1
+GIT_VERSION := $(shell [ -d .git ] && echo "-$$(git describe --always)")
CFLAGS ?= -g
+CFLAGS += -DVERSION=\"$(VERSION)$(GIT_VERSION)\"
all: sircbot
@@ -11,4 +14,5 @@ sircbot: $(sircbot_OBJ)
.c.o:
$(CC) $(CFLAGS) -c $^
-
+clean:
+ rm -rf sircbot $(sircbot_OBJ)