1LOCAL_DIR := $(GET_LOCAL_DIR) 2 3# At the moment, this can only be built with hardware MMU available. 4ifeq (true,$(call TOBOOL,$(WITH_KERNEL_VM))) 5 6MODULE := $(LOCAL_DIR) 7 8MODULE_SRCS += $(LOCAL_DIR)/e1000.cpp 9 10MODULE_DEPS += dev/bus/pci 11MODULE_DEPS += lib/minip 12 13include make/module.mk 14 15endif # WITH_KERNEL_VM 16