Rename nand.h as flash/nand/core.h, chase consumers. The public APIs need to be sorted out with imp.h, but this allows other changes to begin improving the separation between policy and mechanism. Moves #include <target/target.h> and #include "driver.h" into the internal headers or source files, removing it from <flash/nand/core.h>.
25 lines
402 B
Makefile
25 lines
402 B
Makefile
SUBDIRS = \
|
|
nor \
|
|
nand
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src
|
|
|
|
METASOURCES = AUTO
|
|
noinst_LTLIBRARIES = libflash.la
|
|
libflash_la_SOURCES = \
|
|
common.c \
|
|
mflash.c
|
|
|
|
libflash_la_LIBADD = \
|
|
$(top_builddir)/src/flash/nor/libocdflashnor.la \
|
|
$(top_builddir)/src/flash/nand/libocdflashnand.la
|
|
|
|
noinst_HEADERS = \
|
|
common.h \
|
|
mflash.h
|
|
|
|
EXTRA_DIST = startup.tcl
|
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|