[Onhm-cvs-commits] SF.net SVN: onhm:[4] source
Status: Planning
Brought to you by:
cheezel
|
From: <ch...@us...> - 2008-10-12 00:22:47
|
Revision: 4
http://onhm.svn.sourceforge.net/onhm/?rev=4&view=rev
Author: cheezel
Date: 2008-10-12 00:22:38 +0000 (Sun, 12 Oct 2008)
Log Message:
-----------
Modified Paths:
--------------
source/Makefile.am
source/configure.ac
source/src/Makefile.am
Added Paths:
-----------
source/common/Makefile.am
source/common/libohmlogger/
source/common/libohmlogger/Makefile.am
source/src/server.c
Modified: source/Makefile.am
===================================================================
--- source/Makefile.am 2008-10-12 00:14:26 UTC (rev 3)
+++ source/Makefile.am 2008-10-12 00:22:38 UTC (rev 4)
@@ -1,7 +1,8 @@
## Process this file with automake to produce Makefile.in
## Created by Anjuta
-SUBDIRS = src po
+SUBDIRS = src po \
+ common
ohmdocdir = ${prefix}/doc/ohm
ohmdoc_DATA = \
Added: source/common/Makefile.am
===================================================================
--- source/common/Makefile.am (rev 0)
+++ source/common/Makefile.am 2008-10-12 00:22:38 UTC (rev 4)
@@ -0,0 +1,6 @@
+
+SUBDIRS = \
+ libohmlogger
+
+## File created by the gnome-build tools
+
Added: source/common/libohmlogger/Makefile.am
===================================================================
--- source/common/libohmlogger/Makefile.am (rev 0)
+++ source/common/libohmlogger/Makefile.am 2008-10-12 00:22:38 UTC (rev 4)
@@ -0,0 +1,8 @@
+
+lib_LIBRARIES = \
+ libohmlogger.a
+
+libohmlogger_a_SOURCES =
+
+## File created by the gnome-build tools
+
Modified: source/configure.ac
===================================================================
--- source/configure.ac 2008-10-12 00:14:26 UTC (rev 3)
+++ source/configure.ac 2008-10-12 00:22:38 UTC (rev 4)
@@ -37,4 +37,6 @@
Makefile
src/Makefile
po/Makefile.in
+common/Makefile
+common/libohmlogger/Makefile
])
Modified: source/src/Makefile.am
===================================================================
--- source/src/Makefile.am 2008-10-12 00:14:26 UTC (rev 3)
+++ source/src/Makefile.am 2008-10-12 00:22:38 UTC (rev 4)
@@ -11,8 +11,12 @@
-Wall\
-g
-bin_PROGRAMS = ohm
+bin_PROGRAMS = ohm \
+ ohm_server
+ohm_server_SOURCES = \
+ server.c
+
ohm_SOURCES = \
main.c
Added: source/src/server.c
===================================================================
--- source/src/server.c (rev 0)
+++ source/src/server.c 2008-10-12 00:22:38 UTC (rev 4)
@@ -0,0 +1,25 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * server.c
+ * Copyright (C) Brian Cheeseman 2008 <ch...@us...>
+ *
+ * main.c 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * main.c 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdio.h>
+int main()
+{
+ printf("Hello world\n");
+ return (0);
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|