Jim Ingham bdbdd22937 Teach SBFrame how to guess its language.
<rdar://problem/31411646>

llvm-svn: 300012
2017-04-12 00:19:54 +00:00

12 lines
252 B
Makefile

LEVEL = ../../make
CXX_SOURCES := main.cpp other.cpp other-2.cpp
C_SOURCES := somefunc.c
include $(LEVEL)/Makefile.rules
other-2.o: other-2.cpp
$(CXX) $(CFLAGS_NO_DEBUG) -c other-2.cpp
somefunc.o: somefunc.c
$(CC) $(CFLAGS) -std=c99 -c somefunc.c