Browse Source

remove tertiary include paths

With all #include directives converted, we only need to have the
top-level src/ directory in the search path.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
822c06d9e3
12 changed files with 10 additions and 55 deletions
  1. +1
    -9
      src/Makefile.am
  2. +1
    -4
      src/flash/Makefile.am
  3. +1
    -6
      src/flash/nand/Makefile.am
  4. +1
    -6
      src/flash/nor/Makefile.am
  5. +0
    -2
      src/helper/Makefile.am
  6. +1
    -3
      src/jtag/Makefile.am
  7. +1
    -4
      src/jtag/drivers/Makefile.am
  8. +1
    -4
      src/pld/Makefile.am
  9. +0
    -4
      src/server/Makefile.am
  10. +1
    -4
      src/svf/Makefile.am
  11. +1
    -4
      src/target/Makefile.am
  12. +1
    -5
      src/xsvf/Makefile.am

+ 1
- 9
src/Makefile.am View File

@@ -24,15 +24,7 @@ noinst_HEADERS = \

# set the include path found by configure
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag \
-I$(top_srcdir)/src/target \
-I$(top_srcdir)/src/xsvf \
-I$(top_srcdir)/src/svf \
-I$(top_srcdir)/src/server \
-I$(top_srcdir)/src/flash \
-I$(top_srcdir)/src/pld
-I$(top_srcdir)/src

libopenocd_la_CPPFLAGS = -DPKGBLDDATE=\"`date +%F-%R`\"



+ 1
- 4
src/flash/Makefile.am View File

@@ -3,10 +3,7 @@ SUBDIRS = \
nand

AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag \
-I$(top_srcdir)/src/target
-I$(top_srcdir)/src

METASOURCES = AUTO
noinst_LTLIBRARIES = libflash.la


+ 1
- 6
src/flash/nand/Makefile.am View File

@@ -1,9 +1,4 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/flash \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag \
-I$(top_srcdir)/src/target
AM_CPPFLAGS = -I$(top_srcdir)/src

noinst_LTLIBRARIES = libocdflashnand.la



+ 1
- 6
src/flash/nor/Makefile.am View File

@@ -1,9 +1,4 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag \
-I$(top_srcdir)/src/flash \
-I$(top_srcdir)/src/target
AM_CPPFLAGS = -I$(top_srcdir)/src

noinst_LTLIBRARIES = libocdflashnor.la
libocdflashnor_la_SOURCES = \


+ 0
- 2
src/helper/Makefile.am View File

@@ -1,7 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/server \
-I$(top_srcdir)/src/target \
-DPKGDATADIR=\"$(pkgdatadir)\"

METASOURCES = AUTO


+ 1
- 3
src/jtag/Makefile.am View File

@@ -1,7 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/target
-I$(top_srcdir)/src

METASOURCES = AUTO
noinst_LTLIBRARIES = libjtag.la


+ 1
- 4
src/jtag/drivers/Makefile.am View File

@@ -1,7 +1,4 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag
AM_CPPFLAGS = -I$(top_srcdir)/src

noinst_LTLIBRARIES = libocdjtagdrivers.la



+ 1
- 4
src/pld/Makefile.am View File

@@ -1,8 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/server \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag
-I$(top_srcdir)/src

METASOURCES = AUTO
noinst_LTLIBRARIES = libpld.la


+ 0
- 4
src/server/Makefile.am View File

@@ -1,9 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/target \
-I$(top_srcdir)/src/flash \
-I$(top_srcdir)/src/jtag \
-DPKGDATADIR=\"$(pkgdatadir)\"

METASOURCES = AUTO


+ 1
- 4
src/svf/Makefile.am View File

@@ -1,8 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/server \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag
-I$(top_srcdir)/src

METASOURCES = AUTO
noinst_LTLIBRARIES = libsvf.la


+ 1
- 4
src/target/Makefile.am View File

@@ -6,10 +6,7 @@ OOCD_TRACE_FILES =
endif

AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/jtag \
-I$(top_srcdir)/src/xsvf
-I$(top_srcdir)/src

BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD)



+ 1
- 5
src/xsvf/Makefile.am View File

@@ -1,9 +1,5 @@
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/server \
-I$(top_srcdir)/src/helper \
-I$(top_srcdir)/src/svf \
-I$(top_srcdir)/src/jtag
-I$(top_srcdir)/src

METASOURCES = AUTO
noinst_LTLIBRARIES = libxsvf.la


Loading…
Cancel
Save