diff options
author | tv <tv@iiso> | 2011-09-14 03:13:20 +0200 |
---|---|---|
committer | tv <tv@iiso> | 2011-09-14 03:13:20 +0200 |
commit | 6cb808fa910cb32a9ec786616be7b821a500e8d8 (patch) | |
tree | 9f95f07c96337237fdeeae782e30d65bcf0889d2 | |
parent | dcb9737ae58fea03b714675eb4cc8d7b6f52ccf4 (diff) |
//hyper/process Makefile: initial commit
-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 $@ $< |