aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-11-16 12:28:38 +0000
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-11-16 12:28:38 +0000
commitc2dd9675d6af30ab5129519325bac68491087cc1 (patch)
tree4a594fd1d97d74c24f3dc519116ca5d69b921195 /Makefile
parent4a108d491670b0da98cfdbafbc87dd69f1b3acc2 (diff)
downloadtermo-c2dd9675d6af30ab5129519325bac68491087cc1.tar.gz
termo-c2dd9675d6af30ab5129519325bac68491087cc1.tar.xz
termo-c2dd9675d6af30ab5129519325bac68491087cc1.zip
Store major and minor version number in Makefile; substitute #defines in termkey.h at build time
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a24a716..97441a1 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,10 @@ CFLAGS?=
CFLAGS_DEBUG=
-SONAME=libtermkey.so.0
+VERSION_MAJOR=0
+VERSION_MINOR=0
+
+SONAME=libtermkey.so.$(VERSION_MAJOR)
PREFIX=/usr/local
LIBDIR=$(PREFIX)/lib
@@ -15,7 +18,12 @@ ifeq ($(DEBUG),1)
CFLAGS_DEBUG=-ggdb -DDEBUG
endif
-all: demo demo-async doc
+all: termkey.h demo demo-async doc
+
+termkey.h: termkey.h.in Makefile
+ sed -e 's/@@VERSION_MAJOR@@/$(VERSION_MAJOR)/g' \
+ -e 's/@@VERSION_MINOR@@/$(VERSION_MINOR)/g' \
+ $< >$@
demo: libtermkey.so demo.c
$(CC) $(CFLAGS) $(CFLAGS_DEBUG) -o $@ $^