You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193B

  1. CXXFLAGS := -fuse-ld=mold -ggdb -Wall -Wextra -Wpedantic
  2. OUT := regtest
  3. main:
  4. ${CXX} ${CXXFLAGS} ${CPPFLAGS} source/main.cpp source/vector.c source/jeger.c -o ${OUT}
  5. run:
  6. ${OUT}
  7. test: run