summaryrefslogtreecommitdiff
path: root/go/Makefile
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2024-02-07 19:14:47 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2024-02-07 19:14:47 +0100
commita457621e444b4e0719c076a172a62d823616a122 (patch)
treedf052ecf303a23d25f7300bd6e5db13fa2797805 /go/Makefile
parentdf50aaee6c6ef4b51638fe22317e28234ffe8acc (diff)
downloadkafka-sandbox-a457621e444b4e0719c076a172a62d823616a122.tar.gz
kafka-sandbox-a457621e444b4e0719c076a172a62d823616a122.tar.bz2
kafka-sandbox-a457621e444b4e0719c076a172a62d823616a122.tar.xz
kafka-sandbox-a457621e444b4e0719c076a172a62d823616a122.zip
wip
Diffstat (limited to 'go/Makefile')
-rw-r--r--go/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/go/Makefile b/go/Makefile
new file mode 100644
index 0000000..093da5e
--- /dev/null
+++ b/go/Makefile
@@ -0,0 +1,8 @@
+all: out/producer out/consumer
+
+out/producer out/consumer: $(wildcard *.go)
+ @echo $@
+ @go build -o $@ $(patsubst out/%,%.go,$@)
+
+clean:
+ rm -f out/producer out/consumer