summaryrefslogtreecommitdiffstats
path: root/hyper/process/Makefile
blob: 7d61b28d628f395e5b9b2a573b4541693af1c337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

A := 8

.PHONY: all clean
all: main

clean:
	rm -f main *.$A

%.$A: %.go
	$Ag $<

%: %.$A
	$Al -o $@ $<