Add ccmanual
authorKeith Packard <keithp@keithp.com>
Sat, 7 Mar 2009 22:49:22 +0000 (14:49 -0800)
committerKeith Packard <keithp@keithp.com>
Sat, 7 Mar 2009 22:49:22 +0000 (14:49 -0800)
Makefile.am
ccmanual/Makefile.am [new file with mode: 0644]
ccmanual/ccmanual.c [new file with mode: 0644]
configure.ac

index 11b0b700e0b59bfce565f6c3e287fa55738a76ae..8a061ab74dadf02c172ec9b21bf938e2a45cb9d2 100644 (file)
@@ -1 +1 @@
-SUBDIRS=lib ccload s51 target/blink
+SUBDIRS=lib ccload s51 ccmanual target/blink
diff --git a/ccmanual/Makefile.am b/ccmanual/Makefile.am
new file mode 100644 (file)
index 0000000..4477ef8
--- /dev/null
@@ -0,0 +1,10 @@
+bin_PROGRAMS=ccmanual
+
+AM_CFLAGS=-I$(top_srcdir)/lib $(LIBUSB_CFLAGS)
+CCMANUAL_LIBS=../lib/libcc.a
+
+ccmanual_DEPENDENCIES = $(CCMANUAL_LIBS)
+
+ccmanual_LDADD=$(CCMANUAL_LIBS) $(LIBUSB_LIBS)
+
+ccmanual_SOURCES = ccmanual.c
diff --git a/ccmanual/ccmanual.c b/ccmanual/ccmanual.c
new file mode 100644 (file)
index 0000000..402d9b1
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright © 2009 Keith Packard <keithp@keithp.com>
+ *
+ * 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 "ccdbg.h"
+
+int
+main (int argc, char **argv)
+{
+       struct ccdbg    *dbg;
+
+       dbg = ccdbg_open();
+       if (!dbg)
+               exit (1);
+       
+       ccdbg_add_debug(CC_DEBUG_BITBANG);
+
+       ccdbg_manual(dbg, stdin);
+}
index 3ae805223b42ab8bad7986123efc87c42bd98689..516657ea3b95d186c7c722a570abd9a8fe21b815 100644 (file)
@@ -97,4 +97,5 @@ Makefile
 lib/Makefile
 ccload/Makefile
 s51/Makefile
 lib/Makefile
 ccload/Makefile
 s51/Makefile
+ccmanual/Makefile
 ])
 ])