Makefile 311 B

123456789101112
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Copyright (C) 2022 Red Hat, Inc.
  4. # Author: Vladis Dronov <vdronoff@gmail.com>
  5. obj-m += test_cipher.o
  6. test_cipher-y := test-cipher.o
  7. all:
  8. make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) modules
  9. clean:
  10. make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) clean