From efd17631b16d1271a029e0af8f7d8e5ae795cc5d Mon Sep 17 00:00:00 2001 From: Hubert Chathi Date: Tue, 19 May 2020 15:09:15 -0400 Subject: move -o option before source files, for better compatibility with LLVM --- python/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/Makefile') diff --git a/python/Makefile b/python/Makefile index 16f9823..6bba9cd 100644 --- a/python/Makefile +++ b/python/Makefile @@ -5,15 +5,15 @@ OLM_HEADERS = ../include/olm/olm.h ../include/olm/inbound_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 + $(CPP) -I dummy -I ../include -o include/olm/olm.h ../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 + $(CPP) -I dummy -I ../include -o include/olm/pk.h ../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 + $(CPP) -I dummy -I ../include -o include/olm/sas.h ../include/olm/sas.h headers: include/olm/olm.h include/olm/pk.h include/olm/sas.h -- cgit v1.2.3