aboutsummaryrefslogtreecommitdiff
path: root/python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/python/Makefile b/python/Makefile
index 6283fb5..e4d0611 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -1,18 +1,26 @@
all: olm-python2 olm-python3
-include/olm/olm.h: ../include/olm/olm.h ../include/olm/inbound_group_session.h ../include/olm/outbound_group_session.h
+OLM_HEADERS = ../include/olm/olm.h ../include/olm/inbound_group_session.h \
+ ../include/olm/outbound_group_session.h \
+
+include/olm/olm.h: $(OLM_HEADERS)
mkdir -p include/olm
$(CPP) -I dummy -I ../include ../include/olm/olm.h -o include/olm/olm.h
# add memset to the header so that we can use it to clear buffers
echo 'void *memset(void *s, int c, size_t n);' >> include/olm/olm.h
+include/olm/pk.h: include/olm/olm.h ../include/olm/pk.h
+ $(CPP) -I dummy -I ../include ../include/olm/pk.h -o include/olm/pk.h
+
include/olm/sas.h: include/olm/olm.h ../include/olm/sas.h
$(CPP) -I dummy -I ../include ../include/olm/sas.h -o include/olm/sas.h
-olm-python2: include/olm/olm.h include/olm/sas.h
+headers: include/olm/olm.h include/olm/pk.h include/olm/sas.h
+
+olm-python2: headers
DEVELOP=$(DEVELOP) python2 setup.py build
-olm-python3: include/olm/olm.h include/olm/sas.h
+olm-python3: headers
DEVELOP=$(DEVELOP) python3 setup.py build
install: install-python2 install-python3