aboutsummaryrefslogtreecommitdiffstats
path: root/extra/mag/Makefile
blob: f3698dd44e9c9435792f2be2da476c7a62fbc6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SHELL := /bin/bash
TARGETS = magrefs magrefs-mem memkey

.PHONY: all
all: $(TARGETS)

%: %.go
	go build -ldflags "-w -s" -o $@ $^

.PHONY: clean
clean:
	rm -f $(TARGETS)