Jason Molenda 52560ba105 Change TestExec.py from creating an i386+x86_64 fat binary
on darwin systems and re-execing itself, to creating two
separate test programs; lldb runs the first program and it
exec's the second.  

Support for compiling for i386 is going away.

llvm-svn: 334783
2018-06-15 00:55:53 +00:00

14 lines
215 B
Makefile

LEVEL = ../../make
CXX_SOURCES := main.cpp
all: a.out secondprog
include $(LEVEL)/Makefile.rules
secondprog:
$(MAKE) VPATH=$(VPATH) -f $(SRCDIR)/secondprog.mk
clean::
$(MAKE) -f $(SRCDIR)/secondprog.mk clean