aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5888a58c30185c4808c3f98e3914f256da641c2a (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 sanctum.geek.nz/code/go-gemini.git/cmd/example

clean:
	rm -rf gemini-example

.PHONY: all build clean