From e856bae6839855caf2d0c9223f47b33d575f2d4d Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Mon, 16 Jan 2017 16:51:41 -0800 Subject: [PATCH] Fixing the deps in the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eb8c952..6a21234 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ INIT_DEP := $(BUILD_D)/.builddir ARCH_SRCS := $(wildcard $(ARCH_D)/*.s) ARCH_SRCS += $(wildcard $(ARCH_D)/*.c) KOBJS += $(patsubst $(ARCH_D)/%,$(BUILD_D)/arch/%,$(patsubst %,%.o,$(ARCH_SRCS))) -DEPS := +DEPS := $(patsubst $(ARCH_D)/%,$(BUILD_D)/arch/%,$(patsubst %,%.d,$(ARCH_SRCS))) MOD_TARGETS := PARTED ?= /sbin/parted @@ -88,7 +88,7 @@ init: $(INIT_DEP) $(INIT_DEP): mkdir -p $(BUILD_D) $(patsubst %,$(BUILD_D)/d.%,$(MODULES)) - mkdir -p $(BUILD_D)/board $(BUILD_D)/arch + mkdir -p $(BUILD_D)/arch touch $(INIT_DEP) clean: