From 6d965ea72ad85ff23059e0d7ff657070be67dbdc Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Mon, 12 Feb 2018 14:10:32 +1100 Subject: pflash: Fix makefile dependency issue Otherwise we could end up trying to build files before the links are created. Let's use a heavy handed approach and not build *anything* until we have the links. Reported-by: Brad Bishop Signed-off-by: Stewart Smith --- external/pflash/rules.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/external/pflash/rules.mk b/external/pflash/rules.mk index 9dff002..3ee82b5 100644 --- a/external/pflash/rules.mk +++ b/external/pflash/rules.mk @@ -37,17 +37,17 @@ version.c: .version echo "const char version[] = \"$(PFLASH_VERSION)\";" ;\ fi) > $@ -%.o : %.c +%.o : %.c | links $(Q_CC)$(CC) $(CFLAGS) -c $< -o $@ $(LIBFLASH_SRC): | links $(CCAN_SRC): | links -$(LIBFLASH_OBJS): libflash-%.o : libflash/%.c +$(LIBFLASH_OBJS): libflash-%.o : libflash/%.c | links $(Q_CC)$(CC) $(CFLAGS) -c $< -o $@ -$(CCAN_OBJS): ccan-list-%.o: ccan/list/%.c +$(CCAN_OBJS): ccan-list-%.o: ccan/list/%.c | links $(Q_CC)$(CC) $(CFLAGS) -c $< -o $@ $(EXE): $(OBJS) -- cgit v1.1