teak-llvm/lldb/packages/Python/lldbsuite/test/commands/target/auto-install-main-executable/Makefile
Daniel Kiss 95116c591f [lldb] Add a setting to not install the main executable
Summary:
Add setting target.auto-install-main-executable that controls whether
the main executable should be automatically installed when connected to
a remote platform even if it does not have an explicit install path
specified. The default is true as the current behaviour.

Reviewers: omjavaid, JDevlieghere, srhines, labath, clayborg

Reviewed By: clayborg

Subscribers: kevin.brodsky, lldb-commits, llvm-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D71761
2020-01-21 19:26:18 +00:00

10 lines
178 B
Makefile

CXX_SOURCES := main.cpp
CXXFLAGS := -DBUILD=\"stock\"
a.out: a.device.out
include Makefile.rules
a.device.out:
$(CXX) $(CXXFLAGS) -DBUILD=\"device\" -o $@ $(SRCDIR)/main.cpp