diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2018-02-28 07:36:00 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2018-02-28 07:36:00 +0000 |
commit | 4fe88d34a42e600d537287aacc500adcda29c303 (patch) | |
tree | 8a312527c3a711c51294f92c924f09c7007748ff | |
parent | e9f249bc21d5f5711464a53d0183f97a2e601180 (diff) | |
download | ChibiOS-4fe88d34a42e600d537287aacc500adcda29c303.tar.gz ChibiOS-4fe88d34a42e600d537287aacc500adcda29c303.tar.bz2 ChibiOS-4fe88d34a42e600d537287aacc500adcda29c303.zip |
Updated EX makefiles to be compliant with new mechanisms
git-svn-id: https://svn.code.sf.net/p/chibios/svn2/trunk@11590 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r-- | os/ex/ST/hts221.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/l3gd20.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lis302dl.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lis3dsh.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lis3mdl.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lps25h.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lsm303dlhc.mk | 6 | ||||
-rw-r--r-- | os/ex/ST/lsm6ds0.mk | 6 |
8 files changed, 40 insertions, 8 deletions
diff --git a/os/ex/ST/hts221.mk b/os/ex/ST/hts221.mk index 7e8c8d7e4..a0149664e 100644 --- a/os/ex/ST/hts221.mk +++ b/os/ex/ST/hts221.mk @@ -3,4 +3,8 @@ HTS221SRC := $(CHIBIOS)/os/ex/ST/hts221.c # Required include directories
HTS221INC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(HTS221SRC)
+ALLINC += $(HTS221INC)
\ No newline at end of file diff --git a/os/ex/ST/l3gd20.mk b/os/ex/ST/l3gd20.mk index eb547a739..2d593770d 100644 --- a/os/ex/ST/l3gd20.mk +++ b/os/ex/ST/l3gd20.mk @@ -3,4 +3,8 @@ L3GD20SRC := $(CHIBIOS)/os/ex/ST/l3gd20.c # Required include directories
L3GD20INC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(L3GD20SRC)
+ALLINC += $(L3GD20INC)
\ No newline at end of file diff --git a/os/ex/ST/lis302dl.mk b/os/ex/ST/lis302dl.mk index 6630e2c74..4e9a314f4 100644 --- a/os/ex/ST/lis302dl.mk +++ b/os/ex/ST/lis302dl.mk @@ -3,4 +3,8 @@ LIS302DLSRC := $(CHIBIOS)/os/ex/ST/lis302dl.c # Required include directories
LIS302DLINC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LIS302DLSRC)
+ALLINC += $(LIS302DLINC)
\ No newline at end of file diff --git a/os/ex/ST/lis3dsh.mk b/os/ex/ST/lis3dsh.mk index 76448d397..3feb58bda 100644 --- a/os/ex/ST/lis3dsh.mk +++ b/os/ex/ST/lis3dsh.mk @@ -3,4 +3,8 @@ LIS3DSHSRC := $(CHIBIOS)/os/ex/ST/lis3dsh.c # Required include directories
LIS3DSHINC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LIS3DSHSRC)
+ALLINC += $(LIS3DSHINC)
\ No newline at end of file diff --git a/os/ex/ST/lis3mdl.mk b/os/ex/ST/lis3mdl.mk index a5f916a28..d1da61d9a 100644 --- a/os/ex/ST/lis3mdl.mk +++ b/os/ex/ST/lis3mdl.mk @@ -3,4 +3,8 @@ LIS3MDLSRC := $(CHIBIOS)/os/ex/ST/lis3mdl.c # Required include directories
LIS3MDLINC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LIS3MDLSRC)
+ALLINC += $(LIS3MDLINC)
\ No newline at end of file diff --git a/os/ex/ST/lps25h.mk b/os/ex/ST/lps25h.mk index 1d8d6ec8d..52fff0ff5 100644 --- a/os/ex/ST/lps25h.mk +++ b/os/ex/ST/lps25h.mk @@ -3,4 +3,8 @@ LPS25HSRC := $(CHIBIOS)/os/ex/ST/lps25h.c # Required include directories
LPS25HINC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LPS25HSRC)
+ALLINC += $(LPS25HINC)
\ No newline at end of file diff --git a/os/ex/ST/lsm303dlhc.mk b/os/ex/ST/lsm303dlhc.mk index caab8e439..5201414ca 100644 --- a/os/ex/ST/lsm303dlhc.mk +++ b/os/ex/ST/lsm303dlhc.mk @@ -3,4 +3,8 @@ LSM303DLHCSRC := $(CHIBIOS)/os/ex/ST/lsm303dlhc.c # Required include directories
LSM303DLHCINC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LSM303DLHCSRC)
+ALLINC += $(LSM303DLHCINC)
\ No newline at end of file diff --git a/os/ex/ST/lsm6ds0.mk b/os/ex/ST/lsm6ds0.mk index 3acd24845..438680dda 100644 --- a/os/ex/ST/lsm6ds0.mk +++ b/os/ex/ST/lsm6ds0.mk @@ -3,4 +3,8 @@ LSM6DS0SRC := $(CHIBIOS)/os/ex/ST/lsm6ds0.c # Required include directories
LSM6DS0INC := $(CHIBIOS)/os/hal/lib/peripherals/sensors \
- $(CHIBIOS)/os/ex/ST
\ No newline at end of file + $(CHIBIOS)/os/ex/ST
+
+# Shared variables
+ALLCSRC += $(LSM6DS0SRC)
+ALLINC += $(LSM6DS0INC)
\ No newline at end of file |