> ## Documentation Index
> Fetch the complete documentation index at: https://docs.streamnative.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Project

Create a new directory anywhere you’d like for this project:

```bash theme={null}
mkdir kafka-c-getting-started && cd kafka-c-getting-started
```

Create the following `Makefile` for the project:

```Makefile theme={null}
ALL: producer consumer

CFLAGS=-Wall $(shell pkg-config --cflags glib-2.0 rdkafka)
LDLIBS=$(shell pkg-config --libs glib-2.0 rdkafka)
```
