您最多选择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 $@