Move jtag.c to apps/jtag/; move global vars from jtag.c to global/urjtag.c
git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1540 b68d4a1b-bc3d-0410-92ed-d4ac073336b7master
parent
08e72f4335
commit
1a618339c9
@ -0,0 +1,37 @@
|
||||
#
|
||||
# $Id: Makefile.am 1531 2009-04-24 15:28:59Z rfhh $
|
||||
#
|
||||
# Copyright (C) 2002 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>, 2002.
|
||||
#
|
||||
|
||||
include $(top_srcdir)/Makefile.rules
|
||||
|
||||
bin_PROGRAMS = \
|
||||
jtag
|
||||
|
||||
jtag_SOURCES = \
|
||||
jtag.c
|
||||
|
||||
jtag_LDADD = \
|
||||
$(top_srcdir)/src/liburjtag.la \
|
||||
@LIBINTL@
|
||||
|
||||
localedir = $(datadir)/locale
|
||||
INCLUDES = -DLOCALEDIR=\"$(localedir)\"
|
@ -0,0 +1,29 @@
|
||||
#
|
||||
# $Id: Makefile.am 1531 2009-04-24 15:28:59Z rfhh $
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
include $(top_srcdir)/Makefile.rules
|
||||
|
||||
noinst_LTLIBRARIES = libglobal.la
|
||||
|
||||
libglobal_la_SOURCES = \
|
||||
urjtag.c
|
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* $Id: urjtag.c 1539 2009-05-01 12:02:08Z rfhh $
|
||||
*
|
||||
* Copyright (C) 2009 Rutger Hofman, VU Amsterdam
|
||||
*
|
||||
* 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 Rutger Hofman
|
||||
*/
|
||||
|
||||
#include "sysdep.h"
|
||||
|
||||
#include <urjtag/error.h>
|
||||
#include <urjtag/jtag.h>
|
||||
|
||||
urj_error_state_t urj_error_state;
|
||||
int urj_debug_mode = 0;
|
||||
int urj_big_endian = 0;
|
Loading…
Reference in New Issue