all: rbtest

CFLAGS = -Wall -Werror -pedantic -std=c99 -O2

rbtest: main.o
	cc $^ -o $@

%.o: %.c
	cc $(CFLAGS) -c $< -o $@

clean:
	rm -f rbtest *.o
