makefile 147 B

1234567
  1. linux-artifact-name = hello-linux.out
  2. $(linux-artifact-name): main.cpp
  3. g++ main.cpp -o $(linux-artifact-name)
  4. clean:
  5. rm $(linux-artifact-name)