Files
frida-frida-python/src/Makefile.am
T
Ole André Vadla Ravnås ae99674c6d Fix installation of the frida tool
There was a conflict between the directory and the tool with the same name.
2015-04-18 00:39:12 +02:00

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)