mirror of https://github.com/rusefi/isotp-c.git
Add canutil dependency for bit field manipulation.
This commit is contained in:
parent
e6d46d95d3
commit
61344915df
|
@ -0,0 +1,4 @@
|
|||
*.o
|
||||
.DS_Store
|
||||
*~
|
||||
*.bin
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "deps/canutil"]
|
||||
path = deps/canutil
|
||||
url = https://github.com/openxc/canutil
|
3
Makefile
3
Makefile
|
@ -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)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 04a4db7d336ae2cae94ac3234086b22fbf1339f0
|
Loading…
Reference in New Issue