Makefile requires both PORT_SRCS and PORT_OBJS to be defined, but only the example core_portme.mak files only define one or the other
Makefile contains the lines
SRCS = $(ORIG_SRCS) $(PORT_SRCS)
OBJS = $(addprefix $(OPATH),$(addsuffix $(OEXT),$(CORE_FILES)) $(PORT_OBJS))
Without a valid definition of PORT_OBJS, OBJS incomplete. This affects the clean rule, and the SEPARATE_COMPILE option, and probably some other things I didn't spot.
Makefile requires both PORT_SRCS and PORT_OBJS to be defined, but only the example core_portme.mak files only define one or the other
Makefile contains the lines
Without a valid definition of
PORT_OBJS,OBJSincomplete. This affects thecleanrule, and theSEPARATE_COMPILEoption, and probably some other things I didn't spot.