summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b682e4d7a8a9928711fd3a1fa4fa14ea7b78bde4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PYTHON_INCLUDES=$(shell python-config --includes)

all: M2Crypto_ext

clean:
	$(RM) _M2Crypto_ext.so M2Crypto_ext.py* M2Crypto_ext_wrap.c M2Crypto_ext_wrap.o

M2Crypto_ext: _M2Crypto_ext.so M2Crypto_ext.py

M2Crypto_ext.py: M2Crypto_ext.i
	swig -python -I/usr/include $<

M2Crypto_ext_wrap.c: M2Crypto_ext.i
	swig -python -I/usr/include $<

M2Crypto_ext_wrap.o: M2Crypto_ext_wrap.c
	gcc -O2 -fPIC -o $@ -c $< $(PYTHON_INCLUDES)

_M2Crypto_ext.so: M2Crypto_ext_wrap.o
	gcc -shared -o $@ $<