mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-11 20:46:06 +00:00

The second makefile that was added has implicit rules which meant that secondprog.cpp would be built once into a secondprog binary, but it would also be compiled as a.out overwriting the main binary. This lead to spurious failures. This commit simplifies the Makefile to build only once with the correct executable name. llvm-svn: 334861