30 lines
664 B
Makefile
30 lines
664 B
Makefile
##
|
|
## $Id: Makefile.am,v 1.3 2004/01/08 20:37:25 codewiz Exp $
|
|
##
|
|
## This file is part of a free BDM package
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/driver -I$(top_srcdir)/lib
|
|
|
|
noinst_LIBRARIES = libbdmabstraction.a
|
|
|
|
libbdmabstraction_a_SOURCES = \
|
|
BDMTargetAddress.c \
|
|
BDMFlash.c \
|
|
bdmops.c \
|
|
Flash.c
|
|
|
|
noinst_HEADERS = \
|
|
bdmcf.h \
|
|
BDMDriver.h \
|
|
BDMFlash.h \
|
|
bdmops.h \
|
|
BDMTargetAddress.h \
|
|
Debug.h \
|
|
Flash.h
|