summaryrefslogtreecommitdiff
path: root/src/hub/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-10-21 14:38:54 +0200
committerChristian Pointner <equinox@spreadspace.org>2014-10-21 14:38:54 +0200
commit62107f8a0fc7127fa70ae48f143b06a4648ac11a (patch)
tree7a44603da886a7cb270a1ec47d6d9b17b9e5964f /src/hub/Makefile
parentdaq: removed .py extension for scripts (diff)
hub: Makefile license header and distclean target
Diffstat (limited to 'src/hub/Makefile')
-rw-r--r--src/hub/Makefile40
1 files changed, 37 insertions, 3 deletions
diff --git a/src/hub/Makefile b/src/hub/Makefile
index 8e9d392..205aa46 100644
--- a/src/hub/Makefile
+++ b/src/hub/Makefile
@@ -1,3 +1,35 @@
+#
+# sfive
+#
+# sfive - spreadspace streaming statistics suite is a generic
+# statistic collection tool for streaming server infrastuctures.
+# The system collects and stores meta data like number of views
+# and throughput from a number of streaming servers and stores
+# it in a global data store.
+# The data acquisition is designed to be generic and extensible in
+# order to support different streaming software.
+# sfive also contains tools and applications to filter and visualize
+# live and recorded data.
+#
+#
+# Copyright (C) 2014 Christian Pointner <equinox@spreadspace.org>
+# Markus Grüneis <gimpf@gimpf.org>
+#
+# This file is part of sfive.
+#
+# sfive is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3
+# as published by the Free Software Foundation.
+#
+# sfive 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 sfive. If not, see <http://www.gnu.org/licenses/>.
+#
+
curdir:= $(shell pwd)
GOCMD := go
@@ -16,12 +48,14 @@ test: getlibs
$(GOCMD) test spreadspace.org/sfive
clean:
+ rm -rf pkg/*/spreadspace.org
+ rm -rf bin
+
+distclean: clean
rm -rf src/github.com
rm -rf pkg
- rm -rf bin
all: build test
-.PHONY: getlibs build test clean _setenv
+.PHONY: getlibs build test clean distclean _setenv
.DEFAULT_GOAL = all
-