aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ca8bd62b33d4a81ad14e91613bb05fe4c94e4932 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
all: build

build: gemini-example

gemini-example: cmd/example/*.go *.go
	go build -o gemini-example git.sr.ht/~yotam/go-gemini/cmd/example

clean:
	rm -rf gemini-example

.PHONY: all build clean