/ src / emc / motion-logger / Submakefile
Submakefile
1  TARGETS += ../bin/motion-logger
2  
3  MOTION_LOGGER_SRCS := $(addprefix emc/motion-logger/, motion-logger.c)
4  USERSRCS += $(MOTION_LOGGER_SRCS)
5  
6  ../bin/motion-logger: $(call TOOBJS, $(MOTION_LOGGER_SRCS)) ../lib/libnml.so.0 ../lib/liblinuxcnchal.so.0
7  	$(ECHO) Linking $(notdir $@)
8  	$(Q)$(CC) $(LDFLAGS) -o $@ $^
9