
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
14 lines
215 B
Makefile
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
|