diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad2a373 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ + +GOPATH := ${PWD} +export GOPATH + +default: build + +build: dict2rest + +dict2rest: + go install dict2rest + +clean: + rm bin/* + +.PHONY: build dict2rest clean |
