From a2389e4d3bc721ce06d793fdf1951daca3d289b0 Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 17 Jun 2020 22:13:49 +0200 Subject: [PATCH] Add filelist.sh call to the makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 5908557..0a1a504 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,7 @@ export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \ export DEPSDIR := $(CURDIR)/$(BUILD) +FILELIST := $(shell bash ./filelist.sh) CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c))) CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp))) SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))