Fix ta/ and taalgos/ include path for VPATH builds.
* src/ta/Makefile.am, src/taalgos/Makefile.am: Add -I..
This commit is contained in:
parent
20c7f1e8cf
commit
be6071184e
2 changed files with 22 additions and 21 deletions
|
|
@ -1,4 +1,5 @@
|
|||
## Copyright (C) 2010 Laboratoire de Recherche et Développement
|
||||
## -*- coding: utf-8 -*-
|
||||
## Copyright (C) 2010, 2012 Laboratoire de Recherche et Développement
|
||||
## de l'Epita (LRDE).
|
||||
##
|
||||
## This file is part of Spot, a model checking library.
|
||||
|
|
@ -18,7 +19,7 @@
|
|||
## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
## 02111-1307, USA.
|
||||
|
||||
AM_CPPFLAGS = -I$(srcdir)/.. $(BUDDY_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(srcdir)/.. -I.. $(BUDDY_CPPFLAGS)
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
tadir = $(pkgincludedir)/ta
|
||||
|
|
@ -31,8 +32,8 @@ ta_HEADERS = \
|
|||
tgtaexplicit.hh \
|
||||
tgtaproduct.hh
|
||||
|
||||
noinst_LTLIBRARIES = libta.la
|
||||
libta_la_SOURCES = \
|
||||
noinst_LTLIBRARIES = libta.la
|
||||
libta_la_SOURCES = \
|
||||
ta.cc \
|
||||
taproduct.cc \
|
||||
tgta.cc \
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
## Copyright (C) 2010 Laboratoire de Recherche et Développement
|
||||
## -*- coding: utf-8 -*-
|
||||
## Copyright (C) 2010, 2012 Laboratoire de Recherche et Développement
|
||||
## de l'Epita (LRDE).
|
||||
##
|
||||
## This file is part of Spot, a model checking library.et Marie Curie.
|
||||
|
|
@ -19,27 +20,26 @@
|
|||
## 02111-1307, USA.
|
||||
|
||||
|
||||
AM_CPPFLAGS = -I$(srcdir)/.. $(BUDDY_CPPFLAGS)
|
||||
AM_CPPFLAGS = -I$(srcdir)/.. -I.. $(BUDDY_CPPFLAGS)
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
|
||||
taalgosdir = $(pkgincludedir)/taalgos
|
||||
|
||||
taalgos_HEADERS = \
|
||||
tgba2ta.hh \
|
||||
dotty.hh \
|
||||
reachiter.hh \
|
||||
stats.hh \
|
||||
statessetbuilder.hh \
|
||||
minimize.hh \
|
||||
emptinessta.hh
|
||||
tgba2ta.hh \
|
||||
dotty.hh \
|
||||
reachiter.hh \
|
||||
stats.hh \
|
||||
statessetbuilder.hh \
|
||||
minimize.hh \
|
||||
emptinessta.hh
|
||||
|
||||
noinst_LTLIBRARIES = libtaalgos.la
|
||||
libtaalgos_la_SOURCES = \
|
||||
tgba2ta.cc \
|
||||
dotty.cc \
|
||||
reachiter.cc \
|
||||
stats.cc \
|
||||
statessetbuilder.cc \
|
||||
minimize.cc \
|
||||
emptinessta.cc
|
||||
|
||||
tgba2ta.cc \
|
||||
dotty.cc \
|
||||
reachiter.cc \
|
||||
stats.cc \
|
||||
statessetbuilder.cc \
|
||||
minimize.cc \
|
||||
emptinessta.cc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue