diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-27 19:04:27 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-27 19:04:27 -0500 |
commit | 451ee4faa42eb304b27aeeef8c75387b4a12a614 (patch) | |
tree | 5920834e5b8d0de0434a491b42a9c03acee42ed4 /Makefile | |
parent | 34a7c0ca08683eb83d6b6b3d5a6a8fb2f7d5b918 (diff) |
Draft progress implementing single frame rx.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -16,10 +16,9 @@ ifneq ($(OSTYPE),Darwin) endif SRC = $(wildcard src/**/*.c) -SRC += $(wildcard deps/**/*.c) +SRC += $(wildcard deps/canutil/src/**/*.c) OBJS = $(SRC:.c=.o) TEST_SRC = $(wildcard $(TEST_DIR)/test_*.c) -TEST_OBJS = $(TEST_SRC:.c=.o) TESTS=$(patsubst %.c,%.bin,$(TEST_SRC)) TEST_SUPPORT_SRC = $(TEST_DIR)/common.c TEST_SUPPORT_OBJS = $(TEST_SUPPORT_SRC:.c=.o) |