summaryrefslogtreecommitdiffstats
path: root/hyper
diff options
context:
space:
mode:
authortv <tv@iiso>2011-09-14 03:13:20 +0200
committertv <tv@iiso>2011-09-14 03:13:20 +0200
commit6cb808fa910cb32a9ec786616be7b821a500e8d8 (patch)
tree9f95f07c96337237fdeeae782e30d65bcf0889d2 /hyper
parentdcb9737ae58fea03b714675eb4cc8d7b6f52ccf4 (diff)
//hyper/process Makefile: initial commit
Diffstat (limited to 'hyper')
-rw-r--r--hyper/process/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/hyper/process/Makefile b/hyper/process/Makefile
new file mode 100644
index 00000000..7d61b28d
--- /dev/null
+++ b/hyper/process/Makefile
@@ -0,0 +1,14 @@
+
+A := 8
+
+.PHONY: all clean
+all: main
+
+clean:
+ rm -f main *.$A
+
+%.$A: %.go
+ $Ag $<
+
+%: %.$A
+ $Al -o $@ $<