Commit 4c036f38 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

add dummy driver support

parent 51a3ac91
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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