diff options
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 $@ $< |