File: Makefile

package info (click to toggle)
golang-github-valyala-quicktemplate 1.7.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 468 kB
  • sloc: xml: 15; makefile: 14
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