diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2020-02-03 20:38:27 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2020-02-03 20:38:27 -0500 |
commit | 611b00a0b3639e68fd205c27aef73c864a2457cd (patch) | |
tree | 4c9ac8d93746945708c584ee520169f6232330b8 /Makefile | |
parent | 5e7b65e0271b6f244aa30807ed5ad3aa405a2fd5 (diff) |
add stubs for binaries
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43bc7d5 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +all: bin/rrdcached +all: bin/rrdcgi +all: bin/rrdcreate +all: bin/rrdinfo +all: bin/rrdtool +all: bin/rrdupdate +all: bin/librrd.so +.PHONY: all + +bin/%.so: cmd/%/ + go build -o $@ -buildmode=c-shared ./cmd/$* +bin/%: cmd/%/ + go build -o $@ ./cmd/$* + +.PHONY: FORCE +.DELETE_ON_ERROR: +.SECONDARY: |