blob: 2247625a044f7ce604201afe7adbd70877f69cb4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | MODULE := backends/platform/dingux
MODULE_OBJS := \
	main.o \
	dingux.o 
MODULE_DIRS += \
	backends/platform/dingux/
# We don't use the rules.mk here on purpose
OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS)
 |