Add tools directory
authorDavid Schleef <ds@ginger.bigkitten.com>
Sun, 8 Jun 2008 02:05:59 +0000 (19:05 -0700)
committerDavid Schleef <ds@ginger.bigkitten.com>
Sun, 8 Jun 2008 02:05:59 +0000 (19:05 -0700)
Makefile.am
configure.ac
tools/Makefile.am [new file with mode: 0644]
tools/orcc.c [new file with mode: 0644]

index 99e7d30..d07c02e 100644 (file)
@@ -1,7 +1,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-SUBDIRS = orc testsuite examples doc
+SUBDIRS = orc testsuite examples doc tools
 
 EXTRA_DIST = COPYING autogen.sh gtk-doc.make
 
index 4607927..5139ee5 100644 (file)
@@ -133,6 +133,7 @@ doc/Makefile
 orc/Makefile
 testsuite/Makefile
 examples/Makefile
+tools/Makefile
 orc-uninstalled.pc
 orc.pc
 ])
diff --git a/tools/Makefile.am b/tools/Makefile.am
new file mode 100644 (file)
index 0000000..8b5906e
--- /dev/null
@@ -0,0 +1,4 @@
+
+bin_PROGRAMS = orcc
+
+
diff --git a/tools/orcc.c b/tools/orcc.c
new file mode 100644 (file)
index 0000000..442020a
--- /dev/null
@@ -0,0 +1,10 @@
+
+#include <stdio.h>
+
+int
+main (int argc, char *argv[])
+{
+
+  return 0;
+}
+