From 5fe3fea8c0528378641872abc82dfe52b6109d76 Mon Sep 17 00:00:00 2001 From: lye Date: Wed, 21 Mar 2012 22:38:22 -0500 Subject: [PATCH] Hurrah, starting a real fork. The old codebase is too messy for my taste and doesn't provide a clean enough API. I don't like the name either, so I'm also rebranding it. I don't care. --- Makefile | 7 +++++-- irc.go => src/irc.go | 0 irc_callback.go => src/irc_callback.go | 0 irc_struct.go => src/irc_struct.go | 0 4 files changed, 5 insertions(+), 2 deletions(-) rename irc.go => src/irc.go (100%) rename irc_callback.go => src/irc_callback.go (100%) rename irc_struct.go => src/irc_struct.go (100%) diff --git a/Makefile b/Makefile index 393ab31..870adf1 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ include $(GOROOT)/src/Make.inc -TARG=irc -GOFILES=irc.go irc_struct.go irc_callback.go +TARG=github.com/lye/cleanirc +GOFILES=\ + src/irc.go \ + src/irc_struct.go \ + src/irc_callback.go include $(GOROOT)/src/Make.pkg diff --git a/irc.go b/src/irc.go similarity index 100% rename from irc.go rename to src/irc.go diff --git a/irc_callback.go b/src/irc_callback.go similarity index 100% rename from irc_callback.go rename to src/irc_callback.go diff --git a/irc_struct.go b/src/irc_struct.go similarity index 100% rename from irc_struct.go rename to src/irc_struct.go