open-cas-linux/configure.d/Makefile
Rafal Stefanowski 44b4020cc1 Update copyright statements
Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
2020-05-04 16:47:38 +02:00

15 lines
296 B
Makefile

#!/bin/bash
#
# Copyright(c) 2012-2020 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#
obj-m += test_mod.o
MAKE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
all:
make -C $(KERNEL_DIR) M=$(MAKE_DIR) modules
clean:
make -C $(KERNEL_DIR) M=$(MAKE_DIR) clean