diff options
author | Christian Pointner <equinox@spreadspace.org> | 2014-10-21 05:26:30 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2014-10-21 05:26:30 +0200 |
commit | 60dde95a4b269a1dad5f10d71ab0d8de388d3a1a (patch) | |
tree | 68fe9719816f2212128daa4659a7312005445cf5 | |
parent | updated sample data from accesslog importer (diff) |
hub: added clean target for Makefile
-rw-r--r-- | src/hub/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/hub/Makefile b/src/hub/Makefile index 1c4878b..8e9d392 100644 --- a/src/hub/Makefile +++ b/src/hub/Makefile @@ -15,8 +15,13 @@ test: export GOPATH=$(curdir) test: getlibs $(GOCMD) test spreadspace.org/sfive +clean: + rm -rf src/github.com + rm -rf pkg + rm -rf bin + all: build test -.PHONY: getlibs build test _setenv +.PHONY: getlibs build test clean _setenv .DEFAULT_GOAL = all |