mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
ae99674c6d
There was a conflict between the directory and the tool with the same name.
22 lines
382 B
Makefile
22 lines
382 B
Makefile
SUBDIRS = \
|
|
frida \
|
|
scripts
|
|
|
|
pyexec_LTLIBRARIES = _frida.la
|
|
|
|
_frida_la_SOURCES = \
|
|
_frida.c
|
|
_frida_la_LDFLAGS = \
|
|
-export-symbols-regex "^(PyInit__frida|init_frida)$$" \
|
|
-module -avoid-version -shared \
|
|
$(PYFRIDA_LDFLAGS) \
|
|
$(PYTHON_LDFLAGS)
|
|
_frida_la_LIBADD = \
|
|
$(PYFRIDA_LIBS) \
|
|
$(PYTHON_LIBS)
|
|
|
|
AM_CPPFLAGS = \
|
|
-include config.h \
|
|
$(PYFRIDA_CFLAGS) \
|
|
$(PYTHON_CFLAGS)
|