A simple page for all your links.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
237 B

  1. GOPATH := ${PWD}:${GOPATH}
  2. export GOPATH
  3. build: ui
  4. install: build-go
  5. cd less/; $(MAKE) install $(MFLAGS)
  6. ui:
  7. cd less/; $(MAKE) $(MFLAGS)
  8. build-go:
  9. go get -d
  10. go install ./cmd/publicbio
  11. clean:
  12. cd less/; $(MAKE) clean $(MFLAGS)