From 92671af56901423e54ff1f7dff3055fa4a07fbc6 Mon Sep 17 00:00:00 2001 From: fincs Date: Tue, 17 Dec 2019 23:16:08 +0100 Subject: [PATCH] Replace HFILES with HFILES_BIN in all makefiles --- libmesosphere/Makefile | 4 ++-- libstratosphere/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libmesosphere/Makefile b/libmesosphere/Makefile index 94e15105..e3047967 100644 --- a/libmesosphere/Makefile +++ b/libmesosphere/Makefile @@ -65,7 +65,7 @@ endif export OFILES_BIN := $(addsuffix .o,$(BINFILES)) export OFILES_SRC := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) export OFILES := $(OFILES_BIN) $(OFILES_SRC) -export HFILES := $(addsuffix .h,$(subst .,_,$(BINFILES))) +export HFILES_BIN := $(addsuffix .h,$(subst .,_,$(BINFILES))) export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \ $(foreach dir,$(LIBDIRS),-I$(dir)/include) \ @@ -112,7 +112,7 @@ DEPENDS := $(OFILES:.o=.d) #--------------------------------------------------------------------------------- $(OUTPUT) : $(OFILES) -$(OFILES_SRC) : $(HFILES) +$(OFILES_SRC) : $(HFILES_BIN) #--------------------------------------------------------------------------------- %_bin.h %.bin.o : %.bin diff --git a/libstratosphere/Makefile b/libstratosphere/Makefile index 928fe042..d7a3965e 100644 --- a/libstratosphere/Makefile +++ b/libstratosphere/Makefile @@ -76,7 +76,7 @@ endif export OFILES_BIN := $(addsuffix .o,$(BINFILES)) export OFILES_SRC := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) export OFILES := $(OFILES_BIN) $(OFILES_SRC) -export HFILES := $(addsuffix .h,$(subst .,_,$(BINFILES))) +export HFILES_BIN := $(addsuffix .h,$(subst .,_,$(BINFILES))) export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \ $(foreach dir,$(LIBDIRS),-I$(dir)/include) \ @@ -123,7 +123,7 @@ DEPENDS := $(OFILES:.o=.d) #--------------------------------------------------------------------------------- $(OUTPUT) : $(OFILES) -$(OFILES_SRC) : $(HFILES) +$(OFILES_SRC) : $(HFILES_BIN) #--------------------------------------------------------------------------------- %_bin.h %.bin.o : %.bin