From 4c220bedf5e8d90eb14de56a5ca654f1ac304bcb Mon Sep 17 00:00:00 2001 From: kremlin Date: Fri, 15 Aug 2014 20:45:34 -0500 Subject: [PATCH] get rid of main.c and references to it, it has been unused for a while now --- Makefile | 1 - src/main.c | 31 ------------------------------- 2 files changed, 32 deletions(-) delete mode 100644 src/main.c diff --git a/Makefile b/Makefile index 48d3b87..9664f9e 100644 --- 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 index 346d87e..0000000 --- a/src/main.c +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2014 Ian Sutton - * - * 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 -#include -#include -#include - -int main() { - - GMainLoop *mloop; - mloop = g_main_loop_new(NULL, TRUE); - - g_main_loop_run(mloop); - g_main_loop_unref(mloop); - - return 0; -} -- 2.41.0