mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 12:16:07 +00:00
Fix TestExec after r334783
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
This commit is contained in:
parent
56d9aa26ab
commit
ecba8846aa
@ -1,13 +1,6 @@
|
||||
LEVEL = ../../make
|
||||
|
||||
CXX_SOURCES := secondprog.cpp
|
||||
|
||||
all: secondprog
|
||||
|
||||
secondprog:
|
||||
$(CXX) $(CXXFLAGS) -o secondprog $(SRCDIR)/secondprog.cpp
|
||||
|
||||
clean::
|
||||
rm -rf secondprog secondprog.dSYM
|
||||
EXE = secondprog
|
||||
|
||||
include $(LEVEL)/Makefile.rules
|
||||
|
Loading…
x
Reference in New Issue
Block a user