File: Makefile

package info (click to toggle)
golang-github-valyala-quicktemplate 1.8.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 492 kB
  • sloc: makefile: 16; xml: 15
file content (14 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
run: build
	./basicserver

build: update
	go build -o basicserver

update:
	go get -u github.com/valyala/fasthttp
	go get -u github.com/valyala/quicktemplate/qtc

generate: update
	go generate

all: update generate build run