summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2013-12-27 14:14:14 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2013-12-27 14:14:14 -0500
commit61344915dfdd01101d086b79b56109a9942cbf1a (patch)
treea56b3824df2b4754bfaed66b5e579cac48ee83e5 /Makefile
parente6d46d95d3165ae944c1b235b94002a09a83fde9 (diff)
Add canutil dependency for bit field manipulation.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 49e22f2c..0dd93599 100644
--- a/Makefile
+++ b/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)