build: add build/src to include path
This allows including generated include files. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
parent
456ec016c2
commit
eb1bc657ae
|
@ -32,7 +32,8 @@ noinst_HEADERS = \
|
||||||
|
|
||||||
# set the include path found by configure
|
# set the include path found by configure
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
libopenocd_la_CPPFLAGS = -DPKGBLDDATE=\"`date +%F-%R`\"
|
libopenocd_la_CPPFLAGS = -DPKGBLDDATE=\"`date +%F-%R`\"
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,8 @@ SUBDIRS = \
|
||||||
nand
|
nand
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
noinst_LTLIBRARIES = libflash.la
|
noinst_LTLIBRARIES = libflash.la
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/src
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libocdflashnand.la
|
noinst_LTLIBRARIES = libocdflashnand.la
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/src
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libocdflashnor.la
|
noinst_LTLIBRARIES = libocdflashnor.la
|
||||||
libocdflashnor_la_SOURCES = \
|
libocdflashnor_la_SOURCES = \
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src \
|
||||||
-DPKGDATADIR=\"$(pkgdatadir)\"
|
-DPKGDATADIR=\"$(pkgdatadir)\"
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
noinst_LTLIBRARIES = libjtag.la
|
noinst_LTLIBRARIES = libjtag.la
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/src
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libocdjtagdrivers.la
|
noinst_LTLIBRARIES = libocdjtagdrivers.la
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
noinst_LTLIBRARIES = libpld.la
|
noinst_LTLIBRARIES = libpld.la
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src \
|
||||||
-DPKGDATADIR=\"$(pkgdatadir)\"
|
-DPKGDATADIR=\"$(pkgdatadir)\"
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
noinst_LTLIBRARIES = libsvf.la
|
noinst_LTLIBRARIES = libsvf.la
|
||||||
|
|
|
@ -6,7 +6,8 @@ OOCD_TRACE_FILES =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD)
|
BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/src
|
-I$(top_srcdir)/src \
|
||||||
|
-I$(top_builddir)/src
|
||||||
|
|
||||||
METASOURCES = AUTO
|
METASOURCES = AUTO
|
||||||
noinst_LTLIBRARIES = libxsvf.la
|
noinst_LTLIBRARIES = libxsvf.la
|
||||||
|
|
Loading…
Reference in New Issue