aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 00c009f..5fe15ff 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,10 @@ BUILDDIR = build
SOURCES = $(wildcard src/*.c)
OBJECTS = $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES))
+VERSION = "v0.1.0"
+
+CFLAGS += -DIMV_VERSION=\"$(VERSION)\"
+
$(TARGET): $(OBJECTS)
@echo "LINKING $@"
@$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)