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