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.
 
 
 

21 line
264 B

  1. SRC = \
  2. test.cpp \
  3. audio-convert.cpp audio-sadd.cpp \
  4. base-narray.cpp \
  5. image-kernel.cpp
  6. all: test
  7. clean:
  8. rm -f test test.exe
  9. check: test
  10. ./test
  11. test: $(SRC:%.cpp=%.o)
  12. $(CXX) $^ -o $@
  13. %.o: %.cpp
  14. $(CXX) -std=c++23 -I../include -c $^ -o $@