1 2 3 4 5 6 7 8 9 10 11 12
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