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.

18 lines
259B

  1. CXXFLAGS := -fuse-ld=mold -ggdb -Wall -Wextra -Wpedantic
  2. ifeq (${DEBUG}, 1)
  3. CXXFLAGS += -DDEBUG
  4. endif
  5. OUT := regtest
  6. main:
  7. ${CXX} ${CXXFLAGS} ${CPPFLAGS} source/main.cpp source/vector.c source/jeger.c -o ${OUT}
  8. run:
  9. ${OUT}
  10. test: run
  11. clean:
  12. rm ${OUT}