summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2024-02-07 11:20:43 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2024-02-07 11:20:43 +0100
commitfc9414a56dbcbf7956e1c6fdf7bd7b4a5df2be15 (patch)
treedcd8ddb7e32183ee3d0f52e0110c75b182f0bc1f /Makefile
downloadkafka-sandbox-fc9414a56dbcbf7956e1c6fdf7bd7b4a5df2be15.tar.gz
kafka-sandbox-fc9414a56dbcbf7956e1c6fdf7bd7b4a5df2be15.tar.bz2
kafka-sandbox-fc9414a56dbcbf7956e1c6fdf7bd7b4a5df2be15.tar.xz
kafka-sandbox-fc9414a56dbcbf7956e1c6fdf7bd7b4a5df2be15.zip
wip
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..093da5e
--- /dev/null
+++ b/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