25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

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