CC ?= clang CFLAGS ?= all: $(CC) -o lbr -O2 -Wall -Wextra -Wpedantic $(CFLAGS) src/*.c clean: rm lbr test: ./lbr tests/test.lb