get rid of main.c and references to it, it has been unused for a while now
authorkremlin <ian@kremlin.cc>
Sat, 16 Aug 2014 01:45:34 +0000 (20:45 -0500)
committerkremlin <ian@kremlin.cc>
Sat, 16 Aug 2014 01:45:34 +0000 (20:45 -0500)
Makefile
src/main.c [deleted file]

index 48d3b873b75a87df6219b8c18fa5c301e77a3a21..9664f9e899f29474ec6ebe759dc855ca196f4818 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,6 @@ INVOKE_GENFILE_SCRIPT= \
 all: build
 
 build: _build_interface_objs
-       $(CC) -o bin/out.bin $(CFLAGS) $(GLIBEF) $(SRCDIR)/main.c
 
 clean:
        find ./bin -type f -exec rm {} \;
diff --git a/src/main.c b/src/main.c
deleted file mode 100644 (file)
index 346d87e..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include <gio/gio.h>
-#include <glib.h>
-#include <glib/gprintf.h>
-#include <glib/gstdio.h>
-
-int main() {
-
-    GMainLoop *mloop;        
-    mloop = g_main_loop_new(NULL, TRUE);
-    
-    g_main_loop_run(mloop);
-    g_main_loop_unref(mloop);
-
-    return 0;
-}