github.com/runner-mei/ql@v1.1.0/ql/Makefile (about)

     1  # Copyright 2014 The ql Authors. All rights reserved.
     2  # Use of this source code is governed by a BSD-style
     3  # license that can be found in the LICENSE file.
     4  
     5  .PHONY: all clean nuke
     6  
     7  all: editor
     8  	go vet
     9  	go install
    10  	make todo
    11  
    12  clean:
    13  	go clean
    14  	rm -f *~ ql
    15  
    16  editor:
    17  	go fmt
    18  	go install
    19  
    20  todo:
    21  	@grep -n ^[[:space:]]*_[[:space:]]*=[[:space:]][[:alpha:]][[:alnum:]]* *.go || true
    22  	@grep -n TODO *.go || true
    23  	@grep -n BUG *.go || true
    24  	@grep -n println *.go || true