diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-08-30 14:45:52 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-08-30 14:45:52 +0200 |
commit | 4c036f38a8dbfdc2da9c431e76751368d837e29f (patch) | |
tree | 89fa4073aa3e2fc7d5a97713a091012ffcdf78b7 /Makefile | |
parent | 51a3ac91e40fdf65ec0c21e5dd8acaffed1f492b (diff) |
add dummy driver support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -23,6 +23,11 @@ ifneq (${app}, ) include src/app/${app}/Makefile.inc endif +ifneq ($(findstring dummy,${drivers}), ) + CXX_TARGETS += src/driver/dummy.cc + COMMON_FLAGS += -DDRIVER_DUMMY +endif + ifneq ($(findstring lm75,${drivers}), ) CXX_TARGETS += src/driver/lm75.cc COMMON_FLAGS += -DDRIVER_LM75 |