7 lines
93 B
Makefile
7 lines
93 B
Makefile
|
CC=clang
|
||
|
|
||
|
all:
|
||
|
$(CC) -o lbr -O2 -Wall -Wextra -Wpedantic src/*.c
|
||
|
|
||
|
test:
|
||
|
./lbr tests/test.lb
|