You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.8 KiB

3 years ago
###########################################################################
# This is the top level makefile for the NVIDIA Linux kernel module source
# package.
#
# To build: run `make modules`
# To install the build kernel modules: run (as root) `make modules_install`
###########################################################################
2 years ago
###########################################################################
# variables
###########################################################################
3 years ago
nv_kernel_o = src/nvidia/$(OUTPUTDIR)/nv-kernel.o
nv_kernel_o_binary = kernel-open/nvidia/nv-kernel.o_binary
nv_modeset_kernel_o = src/nvidia-modeset/$(OUTPUTDIR)/nv-modeset-kernel.o
nv_modeset_kernel_o_binary = kernel-open/nvidia-modeset/nv-modeset-kernel.o_binary
2 years ago
###########################################################################
# rules
###########################################################################
3 years ago
2 years ago
include utils.mk
.PHONY: all
all: modules
3 years ago
###########################################################################
# nv-kernel.o is the OS agnostic portion of nvidia.ko
###########################################################################
2 years ago
.PHONY: $(nv_kernel_o)
3 years ago
$(nv_kernel_o):
$(MAKE) -C src/nvidia
$(nv_kernel_o_binary): $(nv_kernel_o)
cd $(dir $@) && ln -sf ../../$^ $(notdir $@)
###########################################################################
# nv-modeset-kernel.o is the OS agnostic portion of nvidia-modeset.ko
###########################################################################
2 years ago
.PHONY: $(nv_modeset_kernel_o)
3 years ago
$(nv_modeset_kernel_o):
$(MAKE) -C src/nvidia-modeset
$(nv_modeset_kernel_o_binary): $(nv_modeset_kernel_o)
cd $(dir $@) && ln -sf ../../$^ $(notdir $@)
###########################################################################
# After the OS agnostic portions are built, descend into kernel-open/ and build
# the kernel modules with kbuild.
###########################################################################
2 years ago
.PHONY: modules
3 years ago
modules: $(nv_kernel_o_binary) $(nv_modeset_kernel_o_binary)
$(MAKE) -C kernel-open modules
###########################################################################
# Install the built kernel modules using kbuild.
###########################################################################
2 years ago
.PHONY: modules_install
3 years ago
modules_install:
$(MAKE) -C kernel-open modules_install
###########################################################################
# clean
###########################################################################
2 years ago
.PHONY: clean
3 years ago
clean: nvidia.clean nvidia-modeset.clean kernel-open.clean
2 years ago
.PHONY: nvidia.clean
3 years ago
nvidia.clean:
$(MAKE) -C src/nvidia clean
2 years ago
.PHONY: nvidia-modeset.clean
3 years ago
nvidia-modeset.clean:
$(MAKE) -C src/nvidia-modeset clean
2 years ago
.PHONY: kernel-open.clean
3 years ago
kernel-open.clean:
$(MAKE) -C kernel-open clean