blob: a4e4f8c5017e88e0925f53f98545f25b0dda65a2 [file] [log] [blame]
# Copyright 2016 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# all drivers have a so name so they get installed
ifeq ($(MODULE_SO_NAME),)
MODULE_SO_NAME := $(MODULE_NAME)
endif
# by default drivers live in lib/driver/...
ifeq ($(MODULE_SO_INSTALL_NAME),)
MODULE_SO_INSTALL_NAME := driver/$(MODULE_SO_NAME).so
endif
include make/module-userlib.mk