mirror of https://github.com/ademakov/libjit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
|
|
lib_LTLIBRARIES = libjitplus.la
|
|
|
|
libjitplus_la_SOURCES = \
|
|
jit-plus-context.cpp \
|
|
jit-plus-function.cpp \
|
|
jit-plus-value.cpp
|
|
|
|
AM_CXXFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -I. -I$(srcdir)
|
|
|
|
libjitplus_la_LDFLAGS = \
|
|
-version-info $(LIBJIT_VERSION) \
|
|
-no-undefined \
|
|
-L$(top_builddir)/jit -L$(top_builddir)/jit/.libs -ljit $(LIB_STDCPP)
|
|
libjitplus_la_DEPENDENCIES = $(top_builddir)/jit/libjit.la
|
|
|