From 6ab4e4f248053d28052e2d531922706d90d75a88 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sat, 7 Jun 2008 19:05:59 -0700 Subject: [PATCH] Add tools directory --- Makefile.am | 2 +- configure.ac | 1 + tools/Makefile.am | 4 ++++ tools/orcc.c | 10 ++++++++++ 4 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 tools/Makefile.am create mode 100644 tools/orcc.c diff --git a/Makefile.am b/Makefile.am index 99e7d30..d07c02e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 diff --git a/configure.ac b/configure.ac index 4607927..5139ee5 100644 --- a/configure.ac +++ b/configure.ac @@ -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 index 0000000..8b5906e --- /dev/null +++ b/tools/Makefile.am @@ -0,0 +1,4 @@ + +bin_PROGRAMS = orcc + + diff --git a/tools/orcc.c b/tools/orcc.c new file mode 100644 index 0000000..442020a --- /dev/null +++ b/tools/orcc.c @@ -0,0 +1,10 @@ + +#include + +int +main (int argc, char *argv[]) +{ + + return 0; +} + -- 2.7.4