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.
36 lines
595 B
Makefile
36 lines
595 B
Makefile
SUBDIRS = \
|
|
nor \
|
|
nand
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/helper \
|
|
-I$(top_srcdir)/src/jtag \
|
|
-I$(top_srcdir)/src/target
|
|
|
|
METASOURCES = AUTO
|
|
noinst_LTLIBRARIES = libflash.la
|
|
libflash_la_SOURCES = \
|
|
common.c \
|
|
flash.c \
|
|
arm_nandio.c \
|
|
nand_ecc.c \
|
|
nand_ecc_kw.c \
|
|
nand.c \
|
|
mflash.c
|
|
|
|
libflash_la_LIBADD = \
|
|
$(top_builddir)/src/flash/nor/libocdflashnor.la \
|
|
$(top_builddir)/src/flash/nand/libocdflashnand.la
|
|
|
|
noinst_HEADERS = \
|
|
arm_nandio.h \
|
|
common.h \
|
|
flash.h \
|
|
mflash.h \
|
|
nand.h
|
|
|
|
EXTRA_DIST = startup.tcl
|
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|