25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 154 B

12345678910111213
  1. SRC = test.cpp audio-convert.cpp audio-sadd.cpp
  2. all: test
  3. clean:
  4. rm -f test test.exe
  5. check: test
  6. ./test
  7. test: $(SRC)
  8. $(CXX) -I../include $^ -o $@