diff options
author | root <root@krebs> | 2011-09-14 20:36:50 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-09-14 20:36:50 +0200 |
commit | 04af55a06ba25e669a705b3c32a16e91fac05125 (patch) | |
tree | 5ac1d5ccb62a18b4a056872b9864abd5ba92f83b /hyper/process/Makefile | |
parent | a8ab9dbc2de0ee3aa744485255360b5e5e8b45cd (diff) | |
parent | e087646763cefc3dae49530fba866aa2bb713f46 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'hyper/process/Makefile')
-rw-r--r-- | hyper/process/Makefile | 14 |
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 $@ $< |