jeger/Makefile

11 lines
178 B
Makefile
Raw Normal View History

2023-09-07 15:18:47 -04:00
CXXFLAGS := -fuse-ld=mold -ggdb -Wall -Wextra -Wpedantic
2023-09-02 11:39:52 -04:00
OUT := regtest
main:
g++ ${CXXFLAGS} source/main.cpp source/vector.c source/regex.c -o ${OUT}
run:
${OUT}
test: run