From: Hannes Reinecke Date: Fri, 13 Aug 2021 10:28:27 +0000 (+0200) Subject: src/Makefile: fixup depencendy for private.h X-Git-Tag: v1.0-rc0~110^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5edf04e7f136b5c24c92992f8fe37ebb0d6e6ab2;p=users%2Fsagi%2Flibnvme.git src/Makefile: fixup depencendy for private.h The Makefile references 'private.h' as 'libnvme_priv', not 'libnvme_private'. Signed-off-by: Hannes Reinecke --- diff --git a/src/Makefile b/src/Makefile index b706a6da..721590f3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -55,7 +55,7 @@ endif libnvme_objs := $(patsubst %.c,%.ol,$(libnvme_srcs)) libnvme_sobjs := $(patsubst %.c,%.os,$(libnvme_srcs)) -$(libnvme_objs) $(libnvme_sobjs): $(libnvme_api) $(libnvme_private) $(libccan_objs) +$(libnvme_objs) $(libnvme_sobjs): $(libnvme_api) $(libnvme_priv) $(libccan_objs) %.os: %.c $(QUIET_CC)$(CC) $(SO_CFLAGS) -c -o $@ $<