rules.mk 626 B

123456789101112131415161718
  1. serial_link_byte_stuffer_SRC :=\
  2. $(SERIAL_PATH)/tests/byte_stuffer_tests.cpp \
  3. $(SERIAL_PATH)/protocol/byte_stuffer.c
  4. serial_link_frame_router_SRC := \
  5. $(SERIAL_PATH)/tests/frame_router_tests.cpp \
  6. $(SERIAL_PATH)/protocol/byte_stuffer.c \
  7. $(SERIAL_PATH)/protocol/frame_validator.c \
  8. $(SERIAL_PATH)/protocol/frame_router.c
  9. serial_link_frame_validator_SRC := \
  10. $(SERIAL_PATH)/tests/frame_validator_tests.cpp \
  11. $(SERIAL_PATH)/protocol/frame_validator.c
  12. serial_link_transport_SRC := \
  13. $(SERIAL_PATH)/tests/transport_tests.cpp \
  14. $(SERIAL_PATH)/protocol/transport.c \
  15. $(SERIAL_PATH)/protocol/triple_buffered_object.c