diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-02-07 19:14:47 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-02-07 19:14:47 +0100 |
commit | a457621e444b4e0719c076a172a62d823616a122 (patch) | |
tree | df052ecf303a23d25f7300bd6e5db13fa2797805 /go/Makefile | |
parent | df50aaee6c6ef4b51638fe22317e28234ffe8acc (diff) | |
download | kafka-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/Makefile | 8 |
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 |