allow #include directives to use module name
Includes the src directory in the search path, so header files may be migrated from: #include "foo.h" to #include <module/foo.h> which is more conducive for installation.
This commit is contained in:
parent
a976ce2dd4
commit
896ac8d4ef
|
@ -3,6 +3,7 @@ SUBDIRS = \
|
||||||
nand
|
nand
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag \
|
-I$(top_srcdir)/src/jtag \
|
||||||
-I$(top_srcdir)/src/target
|
-I$(top_srcdir)/src/target
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/flash \
|
-I$(top_srcdir)/src/flash \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag \
|
-I$(top_srcdir)/src/jtag \
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag \
|
-I$(top_srcdir)/src/jtag \
|
||||||
-I$(top_srcdir)/src/flash \
|
-I$(top_srcdir)/src/flash \
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/server \
|
-I$(top_srcdir)/src/server \
|
||||||
-I$(top_srcdir)/src/target \
|
-I$(top_srcdir)/src/target \
|
||||||
-DPKGDATADIR=\"$(pkgdatadir)\"
|
-DPKGDATADIR=\"$(pkgdatadir)\"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/target
|
-I$(top_srcdir)/src/target
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag
|
-I$(top_srcdir)/src/jtag
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/server \
|
-I$(top_srcdir)/src/server \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag
|
-I$(top_srcdir)/src/jtag
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/server \
|
-I$(top_srcdir)/src/server \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag
|
-I$(top_srcdir)/src/jtag
|
||||||
|
|
|
@ -6,6 +6,7 @@ OOCD_TRACE_FILES =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/jtag \
|
-I$(top_srcdir)/src/jtag \
|
||||||
-I$(top_srcdir)/src/xsvf
|
-I$(top_srcdir)/src/xsvf
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/server \
|
-I$(top_srcdir)/src/server \
|
||||||
-I$(top_srcdir)/src/helper \
|
-I$(top_srcdir)/src/helper \
|
||||||
-I$(top_srcdir)/src/svf \
|
-I$(top_srcdir)/src/svf \
|
||||||
|
|
Loading…
Reference in New Issue