Skip to content

Commit 3332b7b

Browse files
committed
Fix bitfield-c source paths
1 parent 426fdd5 commit 3332b7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CC = gcc
2-
INCLUDES = -Isrc -Ideps/bitfield-c/src -Ideps/isotp-c/src
2+
INCLUDES = -Isrc -Ideps/isotp-c/deps/bitfield-c/src -Ideps/isotp-c/src
33
CFLAGS = $(INCLUDES) -c -Wall -Werror -g -ggdb -std=gnu99 -coverage
44
LDFLAGS = -coverage -lm
55
LDLIBS = -lcheck -lm -lrt -lpthread -lsubunit
@@ -17,7 +17,7 @@ ifneq ($(OSTYPE),Darwin)
1717
endif
1818

1919
SRC = $(wildcard src/**/*.c)
20-
SRC += $(wildcard deps/bitfield-c/src/**/*.c)
20+
SRC += $(wildcard deps/isotp-c/deps/bitfield-c/src/**/*.c)
2121
SRC += $(wildcard deps/isotp-c/src/**/*.c)
2222
OBJS = $(patsubst %,$(TEST_OBJDIR)/%,$(SRC:.c=.o))
2323
TEST_SRC = $(wildcard $(TEST_DIR)/test_*.c)

0 commit comments

Comments
 (0)