We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426fdd5 commit 3332b7bCopy full SHA for 3332b7b
Makefile
@@ -1,5 +1,5 @@
1
CC = gcc
2
-INCLUDES = -Isrc -Ideps/bitfield-c/src -Ideps/isotp-c/src
+INCLUDES = -Isrc -Ideps/isotp-c/deps/bitfield-c/src -Ideps/isotp-c/src
3
CFLAGS = $(INCLUDES) -c -Wall -Werror -g -ggdb -std=gnu99 -coverage
4
LDFLAGS = -coverage -lm
5
LDLIBS = -lcheck -lm -lrt -lpthread -lsubunit
@@ -17,7 +17,7 @@ ifneq ($(OSTYPE),Darwin)
17
endif
18
19
SRC = $(wildcard src/**/*.c)
20
-SRC += $(wildcard deps/bitfield-c/src/**/*.c)
+SRC += $(wildcard deps/isotp-c/deps/bitfield-c/src/**/*.c)
21
SRC += $(wildcard deps/isotp-c/src/**/*.c)
22
OBJS = $(patsubst %,$(TEST_OBJDIR)/%,$(SRC:.c=.o))
23
TEST_SRC = $(wildcard $(TEST_DIR)/test_*.c)
0 commit comments