Makefile for the project:
Tutorial
Create Project
Create a new directory anywhere you’d like for this project:
Create the following
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
mkdir kafka-c-getting-started && cd kafka-c-getting-started
Makefile for the project:
ALL: producer consumer
CFLAGS=-Wall $(shell pkg-config --cflags glib-2.0 rdkafka)
LDLIBS=$(shell pkg-config --libs glib-2.0 rdkafka)
Was this page helpful?