Fix the rare case where an ObjC class has ivars but no methods. The fix is to not early return when a class has no method list.
6 lines
134 B
Makefile
6 lines
134 B
Makefile
OBJC_SOURCES := Point.m main.m
|
|
include Makefile.rules
|
|
|
|
# Only objc metadata, no debug info, for Point.m
|
|
Point.o: CFLAGS_EXTRAS += -g0
|