summaryrefslogtreecommitdiff
path: root/makefile
blob: a895dfea4cb3c804e6e19d344eec71c8173db0b2 (plain)
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