reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
OBJCXX_SOURCES := main.mm myobject.mm
include 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 $@ $<