Page MenuHomeMusing Studio

No OneTemporary

diff --git a/Makefile b/Makefile
index c95392f..635e333 100644
--- a/Makefile
+++ b/Makefile
@@ -1,30 +1,34 @@
GOCMD=go
GOINSTALL=$(GOCMD) install
GOBUILD=$(GOCMD) build
GOTEST=$(GOCMD) test
+GOGET=$(GOCMD) get
BINARY_NAME=writefreely
all : build
-build:
+build: deps
cd cmd/writefreely; $(GOBUILD)
test:
$(GOTEST) -v ./...
run:
$(GOINSTALL) ./...
$(BINARY_NAME) --debug
+deps :
+ $(GOGET) ./...
+
install :
./keys.sh
cd less/; $(MAKE) install $(MFLAGS)
ui : force_look
cd less/; $(MAKE) $(MFLAGS)
clean :
cd less/; $(MAKE) clean $(MFLAGS)
force_look :
true

File Metadata

Mime Type
text/x-diff
Expires
Sat, Aug 30, 7:36 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3382869

Event Timeline