Fix make dist

* include/urjtag/Makefile.am (pkginclude_HEADERS): Remove urjtag.h.
  * extra/fjmem/Makefile.am: New file.
  * src/jim/Makefile.am (EXTRA_DIST): New.
  * src/pld/Makefile.am (libpld_la_SOURCES): Add xilinx.h.
  * src/bus/Makefile.am (libbus_la_SOURCES): Add blackfin.h.
  * src/bfin/Makefile.am (libbfin_la_SOURCES): Add bfin-part.h.
  * configure.ac: Add extra/fjmem/Makefile to AC_CONFIG_FILES.
  * data/Makefile.am (nobase_dist_pkgdata_DATA): Add
    xilinx/xc18v02pc44/xc18v02pc44 and xilinx/xc18v02pc44/STEPPINGS.
  * Makefile.am (SUBDIRS): Add extra/fjmem.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1922 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Jie Zhang 13 years ago
parent f549fac82f
commit 895f2384b8

@ -1,3 +1,16 @@
2011-06-27 Jie Zhang <jie.zhang@analog.com>
* include/urjtag/Makefile.am (pkginclude_HEADERS): Remove urjtag.h.
* extra/fjmem/Makefile.am: New file.
* src/jim/Makefile.am (EXTRA_DIST): New.
* src/pld/Makefile.am (libpld_la_SOURCES): Add xilinx.h.
* src/bus/Makefile.am (libbus_la_SOURCES): Add blackfin.h.
* src/bfin/Makefile.am (libbfin_la_SOURCES): Add bfin-part.h.
* configure.ac: Add extra/fjmem/Makefile to AC_CONFIG_FILES.
* data/Makefile.am (nobase_dist_pkgdata_DATA): Add
xilinx/xc18v02pc44/xc18v02pc44 and xilinx/xc18v02pc44/STEPPINGS.
* Makefile.am (SUBDIRS): Add extra/fjmem.
2011-06-27 Mike Frysinger <vapier@gentoo.org>
* include/urjtag/cmd.h, src/cmd/cmd.h, src/cmd/cmd_cmd.c: Move prototypes

@ -25,6 +25,7 @@ include $(top_srcdir)/Makefile.rules
SUBDIRS = \
doc \
extra/fjmem \
include/urjtag \
data \
src \

@ -68,6 +68,7 @@ AC_CONFIG_FILES(
Makefile
doc/Makefile
data/Makefile
extra/fjmem/Makefile
include/urjtag/Makefile
src/Makefile
src/urjtag.pc

@ -191,6 +191,8 @@ nobase_dist_pkgdata_DATA = \
toshiba/tx4926/STEPPINGS \
toshiba/tx4926/tx4926 \
xilinx/PARTS \
xilinx/xc18v02pc44/xc18v02pc44 \
xilinx/xc18v02pc44/STEPPINGS \
xilinx/xc18v04pc44/xc18v04pc44 \
xilinx/xc18v04pc44/STEPPINGS \
xilinx/xc2c256-tq144/STEPPINGS \

@ -0,0 +1,33 @@
#
# Copyright (C) 2011 Analog Devices, Inc.
#
# 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.
#
include $(top_srcdir)/Makefile.rules
EXTRA_DIST = \
fjmem_config_pack_cyclone-p.vhd \
fjmem_config_pack_spartan3-p.vhd \
fjmem_config_pack_spartan6-p.vhd \
fjmem_core.vhd \
fjmem_cyclone.vhd \
fjmem_pack-p.vhd \
fjmem_spartan3.vhd \
fjmem_spartan6.vhd \
generic_ram_ena.vhd \
README

@ -56,5 +56,4 @@ pkginclude_HEADERS = \
tap.h \
svf.h \
types.h \
urjtag.h \
usbconn.h

@ -29,6 +29,7 @@ libbfin_la_SOURCES = \
insn-gen.c \
bfin.c \
bfin-part.c \
bfin-part.h \
bfin-part-bfin.c
AM_CFLAGS = $(WARNINGCFLAGS)

@ -54,6 +54,7 @@ endif
if ENABLE_BUS_BLACKFIN
libbus_la_SOURCES += \
blackfin.c \
blackfin.h \
bf518f_ezbrd.c \
bf533_stamp.c \
bf537_stamp.c \

@ -30,4 +30,8 @@ libjim_la_SOURCES = \
some_cpu.c \
intel_28f800b3.c
EXTRA_DIST = \
README.jim \
some_cpu.bsd
AM_CFLAGS = $(WARNINGCFLAGS)

@ -28,6 +28,7 @@ noinst_LTLIBRARIES = libpld.la
libpld_la_SOURCES = \
pld.c \
xilinx_bitstream.c \
xilinx.c
xilinx.c \
xilinx.h
AM_CFLAGS = $(WARNINGCFLAGS)

Loading…
Cancel
Save