|
- CFLAGS = -g
- INCLUDE = -I/usr/local/include -I/usr/include -I.
- LIBS = -L /usr/local/lib -larchive
-
- PYVER ?= 3.9
-
- all: __libarchive.so
-
- _libarchive_wrap.c: _libarchive.i
- swig -python -Wall -shadow _libarchive.i
-
- _libarchive_wrap.o: _libarchive_wrap.c
- ${CC} -c ${CFLAGS} -fPIC $$(python${PYVER}-config --cflags) _libarchive_wrap.c
-
- __libarchive.so: _libarchive_wrap.o
- ${CC} _libarchive_wrap.o -shared $$(python${PYVER}-config --ldflags) -Wl,-soname=__libarchive.so -o __libarchive.so ${LIBS}
-
- clean:
- rm -f *.o *.so *.pyc
|