You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
ecba8846aa
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
7 lines
100 B
Makefile
7 lines
100 B
Makefile
LEVEL = ../../make
|
|
|
|
CXX_SOURCES := secondprog.cpp
|
|
EXE = secondprog
|
|
|
|
include $(LEVEL)/Makefile.rules
|