jeger/Makefile

11 lines
193 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:
2023-09-09 08:37:36 -04:00
${CXX} ${CXXFLAGS} ${CPPFLAGS} source/main.cpp source/vector.c source/jeger.c -o ${OUT}
2023-09-02 11:39:52 -04:00
run:
${OUT}
test: run