2003-02-18 Marcel Telka <marcel@telka.sk>
* configure.ac (AC_CONFIG_FILES): Added src/bus/Makefile. * src/bus.h: Moved this file... * include/bus.h: ...here. * include/Makefile.am (noinst_HEADERS): Added bus.h. * src/ixp425.c: Moved this file... * src/bus/ixp425.c: ...here. * src/pxa250.c: Moved this file... * src/bus/pxa2x0.c: ...here. * src/sa1110.c: Moved this file... * src/bus/sa1110.c: ...here. * src/bus/Makefile.am: New file. * src/Makefile.am (SUBDIRS): Added bus. (jtag_SOURCES): Removed bus.h, ixp425.c, pxa250.c, sa1110.c. (jtag_DEPENDENCIES): Added libbus.a. (jtag_LDADD): Ditto. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@368 b68d4a1b-bc3d-0410-92ed-d4ac073336b7master
parent
7fdbf06e79
commit
2b799c36b9
@ -0,0 +1,3 @@
|
||||
.deps
|
||||
Makefile
|
||||
Makefile.in
|
@ -0,0 +1,31 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2003 ETC s.r.o.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
#
|
||||
# Written by Marcel Telka <marcel@telka.sk>, 2003.
|
||||
#
|
||||
|
||||
noinst_LIBRARIES = libbus.a
|
||||
|
||||
libbus_a_SOURCES = \
|
||||
ixp425.c \
|
||||
pxa2x0.c \
|
||||
sa1110.c
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include $(OPENWINCE_INC)
|
Loading…
Reference in New Issue