Add canutil dependency for bit field manipulation.

This commit is contained in:
Christopher Peplin 2013-12-27 14:14:14 -05:00
parent e6d46d95d3
commit 61344915df
4 changed files with 10 additions and 1 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.o
.DS_Store
*~
*.bin

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "deps/canutil"]
path = deps/canutil
url = https://github.com/openxc/canutil

View File

@ -1,5 +1,5 @@
CC = gcc
INCLUDES = -Isrc
INCLUDES = -Isrc -Ideps/canutil/src
CFLAGS = $(INCLUDES) -c -w -Wall -Werror -g -ggdb
LDFLAGS =
LDLIBS = -lcheck
@ -16,6 +16,7 @@ ifneq ($(OSTYPE),Darwin)
endif
SRC = $(wildcard src/**/*.c)
SRC = $(wildcard deps/**/*.c)
OBJS = $(SRC:.c=.o)
TEST_SRC = $(wildcard $(TEST_DIR)/*.c)
TEST_OBJS = $(TEST_SRC:.c=.o)

1
deps/canutil vendored Submodule

@ -0,0 +1 @@
Subproject commit 04a4db7d336ae2cae94ac3234086b22fbf1339f0