選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
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 $@