mirror of
https://github.com/logos-co/wadoku.git
synced 2025-01-11 14:44:33 +00:00
11 lines
129 B
Makefile
11 lines
129 B
Makefile
.PHONY: all build
|
|
FILE=waku-filter
|
|
|
|
build:
|
|
go build -o $(FILE)
|
|
|
|
docker: build
|
|
docker build --rm -t $(FILE):alpha .
|
|
|
|
all: build
|