aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorroot <>2009-02-08 16:25:32 +0000
committerroot <>2009-02-08 16:25:32 +0000
commit5d3e093d432a31fb8a8267cbf30f1ed892f49508 (patch)
tree32d9b3010b05d1719301428fd0ab278d3790445b /app
downloadlibjwg-5d3e093d432a31fb8a8267cbf30f1ed892f49508.tar.gz
libjwg-5d3e093d432a31fb8a8267cbf30f1ed892f49508.tar.bz2
libjwg-5d3e093d432a31fb8a8267cbf30f1ed892f49508.zip
*** empty log message ***
Diffstat (limited to 'app')
-rw-r--r--app/Makefile.am25
-rw-r--r--app/jwg.c24
2 files changed, 49 insertions, 0 deletions
diff --git a/app/Makefile.am b/app/Makefile.am
new file mode 100644
index 0000000..23f3bf4
--- /dev/null
+++ b/app/Makefile.am
@@ -0,0 +1,25 @@
+#
+# Makefile.am:
+#
+# Copyright (c) 2009 James McKenzie <20@madingley.org>,
+# All rights reserved.
+#
+# $Id$
+#
+# $Log$
+# Revision 1.1 2009/02/08 16:25:32 root
+# *** empty log message ***
+#
+#
+#
+
+INCLUDES = -I$(srcdir)/../src
+
+bin_PROGRAMS = jwg
+
+jwg_SOURCES = jwg.c
+jwg_LDADD = ../src/libjwg.la
+
+AM_CFLAGS=-g
+
+
diff --git a/app/jwg.c b/app/jwg.c
new file mode 100644
index 0000000..29181e6
--- /dev/null
+++ b/app/jwg.c
@@ -0,0 +1,24 @@
+/*
+ * jwg.c:
+ *
+ * Copyright (c) 2009 James McKenzie <20@madingley.org>,
+ * All rights reserved.
+ *
+ */
+
+static char rcsid[] = "$Id$";
+
+/*
+ * $Log$
+ * Revision 1.1 2009/02/08 16:25:32 root
+ * *** empty log message ***
+ *
+ */
+
+#include "jwg.h"
+
+int main(int argc,char *argv[])
+{
+
+return 0;
+}