summaryrefslogtreecommitdiffstats
path: root/hyper/process/Makefile
diff options
context:
space:
mode:
authorroot <root@krebs>2011-09-14 20:36:50 +0200
committerroot <root@krebs>2011-09-14 20:36:50 +0200
commit04af55a06ba25e669a705b3c32a16e91fac05125 (patch)
tree5ac1d5ccb62a18b4a056872b9864abd5ba92f83b /hyper/process/Makefile
parenta8ab9dbc2de0ee3aa744485255360b5e5e8b45cd (diff)
parente087646763cefc3dae49530fba866aa2bb713f46 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'hyper/process/Makefile')
-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 $@ $<