diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-04-26 22:51:26 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-04-26 22:50:08 +0200 |
commit | 557a143d8018ac5b25b0cdde99415433e3663f62 (patch) | |
tree | 027f63e11bb52859850cc5e0cbc97292fb2a9065 /decoders/jtag/Makefile.am | |
parent | 2002229d8ae50531d27eb9396803b6f4666d9335 (diff) | |
download | libsigrokdecode-557a143d8018ac5b25b0cdde99415433e3663f62.tar.gz libsigrokdecode-557a143d8018ac5b25b0cdde99415433e3663f62.zip |
srd: Add initial JTAG protocol decoder.
This is unfinished, needs some more work.
Diffstat (limited to 'decoders/jtag/Makefile.am')
-rw-r--r-- | decoders/jtag/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/decoders/jtag/Makefile.am b/decoders/jtag/Makefile.am new file mode 100644 index 0000000..ce6aede --- /dev/null +++ b/decoders/jtag/Makefile.am @@ -0,0 +1,26 @@ +## +## This file is part of the sigrok project. +## +## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de> +## +## 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +pkgdatadir = $(DECODERS_DIR)/jtag + +dist_pkgdata_DATA = __init__.py jtag.py + +CLEANFILES = *.pyc + |