aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/lib
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-11-21 12:54:54 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-11-21 12:54:54 +0000
commit10465f72389fe8ed965b4e07fbb5b8ffe26af9a4 (patch)
tree8cde360454ae4325b0f7b61d12e747d90adab0b4 /os/hal/lib
parentc010f378caa66e18145d94e35a7123e9209f46d1 (diff)
downloadChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.tar.gz
ChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.tar.bz2
ChibiOS-10465f72389fe8ed965b4e07fbb5b8ffe26af9a4.zip
Improved make system.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11049 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/lib')
-rw-r--r--os/hal/lib/complex/mfs/mfs.mk6
-rw-r--r--os/hal/lib/streams/streams.mk4
2 files changed, 9 insertions, 1 deletions
diff --git a/os/hal/lib/complex/mfs/mfs.mk b/os/hal/lib/complex/mfs/mfs.mk
index eeec6da84..b1b67bb61 100644
--- a/os/hal/lib/complex/mfs/mfs.mk
+++ b/os/hal/lib/complex/mfs/mfs.mk
@@ -2,4 +2,8 @@
MFSSRC := $(CHIBIOS)/os/hal/lib/complex/mfs/mfs.c
# Required include directories
-MFSINC := $(CHIBIOS)/os/hal/lib/complex/mfs \ No newline at end of file
+MFSINC := $(CHIBIOS)/os/hal/lib/complex/mfs
+
+# Shared variables
+ALLCSRC += $(MFSSRC)
+ALLINC += $(MFSINC)
diff --git a/os/hal/lib/streams/streams.mk b/os/hal/lib/streams/streams.mk
index fee61e1fe..685610f52 100644
--- a/os/hal/lib/streams/streams.mk
+++ b/os/hal/lib/streams/streams.mk
@@ -4,3 +4,7 @@ STREAMSSRC = $(CHIBIOS)/os/hal/lib/streams/chprintf.c \
$(CHIBIOS)/os/hal/lib/streams/nullstreams.c
STREAMSINC = $(CHIBIOS)/os/hal/lib/streams
+
+# Shared variables
+ALLCSRC += $(STREAMSSRC)
+ALLINC += $(STREAMSINC)