From: Keith Busch Date: Thu, 13 Feb 2020 19:48:08 +0000 (-0800) Subject: Set up ccan make dependency correctly X-Git-Tag: v1.0-rc0~172 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=4bbea1397640064a216fca874e54a99c704c2cf0;p=users%2Fsagi%2Flibnvme.git Set up ccan make dependency correctly Fixes parallel -j make. Signed-off-by: Keith Busch --- diff --git a/src/Makefile b/src/Makefile index 7e004fc1..541a8167 100644 --- a/src/Makefile +++ b/src/Makefile @@ -51,7 +51,7 @@ libccan_srcs := $(wildcard $(CCANDIR)ccan/*/*.c) libccan_objs := $(patsubst %.c,%.ol,$(libccan_srcs)) libccan_sobjs := $(patsubst %.c,%.os,$(libccan_srcs)) -$(libccan_objs) $(libccan_sobjs): $(libccan_headers) +$(libccan_objs) $(libccan_sobjs): $(libccan_headers) $(CCANDIR)config.h libnvme_priv := nvme/private.h libnvme_api := libnvme.h nvme/types.h nvme/ioctl.h nvme/filters.h nvme/tree.h nvme/util.h