* src/ltlvisit/Makefile.am (lib_LTLIBRARIES): Rename as ...
(noinst_LTLIBRARIES): ... this. * src/ltlenv/Makefile.am, src/ltlast/Makefile.am, src/ltlparse/Makefile.am: Likewise. * src/Makefile.am (lib_LTLIBRARIES, libspot_la_SOURCES, libspot_la_LIBADD): New variable. Build a libspot.la library from all the sub-libraries.
This commit is contained in:
parent
e2c42a9f79
commit
4e965abe34
8 changed files with 23 additions and 9 deletions
|
|
@ -1,5 +1,13 @@
|
|||
2003-04-30 Alexandre DURET-LUTZ <aduret@src.lip6.fr>
|
||||
|
||||
* src/ltlvisit/Makefile.am (lib_LTLIBRARIES): Rename as ...
|
||||
(noinst_LTLIBRARIES): ... this.
|
||||
* src/ltlenv/Makefile.am, src/ltlast/Makefile.am,
|
||||
src/ltlparse/Makefile.am: Likewise.
|
||||
* src/Makefile.am (lib_LTLIBRARIES, libspot_la_SOURCES,
|
||||
libspot_la_LIBADD): New variable. Build a libspot.la library
|
||||
from all the sub-libraries.
|
||||
|
||||
* m4/pypath.m4: New file.
|
||||
* Makefile.am (SUBDIRS): Add wrap.
|
||||
* wrap/Makefile.am: New file.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
||||
.libs
|
||||
libspot.la
|
||||
|
|
|
|||
|
|
@ -2,3 +2,11 @@ AUTOMAKE_OPTIONS = subdir-objects
|
|||
|
||||
# List directories in the order they must be built.
|
||||
SUBDIRS = misc ltlenv ltlast ltlvisit ltlparse ltltest
|
||||
|
||||
lib_LTLIBRARIES = libspot.la
|
||||
libspot_la_SOURCES =
|
||||
libspot_la_LIBADD = \
|
||||
ltlenv/libltlenv.la \
|
||||
ltlparse/libltlparse.la \
|
||||
ltlvisit/libltlvisit.la \
|
||||
ltlast/libltlast.la
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
AM_CPPFLAGS = -I$(srcdir)/..
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libltlast.la
|
||||
noinst_LTLIBRARIES = libltlast.la
|
||||
libltlast_la_SOURCES = \
|
||||
allnodes.hh \
|
||||
atomic_prop.cc \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
AM_CPPFLAGS = -I$(srcdir)/..
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libltlenv.la
|
||||
noinst_LTLIBRARIES = libltlenv.la
|
||||
libltlenv_la_SOURCES = \
|
||||
defaultenv.cc \
|
||||
defaultenv.hh \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
AM_CPPFLAGS = -I$(srcdir)/..
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libltlparse.la
|
||||
noinst_LTLIBRARIES = libltlparse.la
|
||||
|
||||
LTLPARSE_YY = ltlparse.yy
|
||||
FROM_LTLPARSE_YY_MAIN = ltlparse.cc
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
AM_CPPFLAGS = -I$(srcdir)/..
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libltlvisit.la
|
||||
noinst_LTLIBRARIES = libltlvisit.la
|
||||
libltlvisit_la_SOURCES = \
|
||||
clone.cc \
|
||||
clone.hh \
|
||||
|
|
|
|||
|
|
@ -6,11 +6,7 @@ pyexec_LTLIBRARIES = _spot.la
|
|||
|
||||
_spot_la_SOURCES = spot_wrap.cxx
|
||||
_spot_la_LDFLAGS = -avoid-version -module
|
||||
_spot_la_LIBADD = \
|
||||
../src/ltlenv/libltlenv.la \
|
||||
../src/ltlparse/libltlparse.la \
|
||||
../src/ltlvisit/libltlvisit.la \
|
||||
../src/ltlast/libltlast.la
|
||||
_spot_la_LIBADD = ../src/libspot.la
|
||||
|
||||
EXTRA_DIST = spot.i
|
||||
spot_wrap.cxx: spot.i
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue