mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 05:25:50 -04:00
12 lines
287 B
Makefile
12 lines
287 B
Makefile
LEVEL = ../../../make
|
|
OBJCXX_SOURCES := main.mm myobject.mm
|
|
include $(LEVEL)/Makefile.rules
|
|
CFLAGS_NO_DEBUG =
|
|
ifeq "$(OS)" "Darwin"
|
|
CFLAGS_NO_DEBUG += -arch $(ARCH)
|
|
endif
|
|
|
|
# myobject.o needs to be built without debug info
|
|
myobject.o: myobject.mm
|
|
$(CXX) $(CFLAGS_NO_DEBUG) -c -o $@ $<
|