CC = cc
CFLAGS = -Wall -O2

bench: main.c ../ipc.c ../ipc.h
	$(CC) $(CFLAGS) -I.. -o $@ main.c ../ipc.c

clean:
	rm -f bench
