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.
86 lines
2.8 KiB
86 lines
2.8 KiB
###########################################################################
|
|
# 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`
|
|
###########################################################################
|
|
|
|
###########################################################################
|
|
# variables
|
|
###########################################################################
|
|
|
|
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
|
|
|
|
###########################################################################
|
|
# rules
|
|
###########################################################################
|
|
|
|
include utils.mk
|
|
|
|
.PHONY: all
|
|
all: modules
|
|
|
|
###########################################################################
|
|
# nv-kernel.o is the OS agnostic portion of nvidia.ko
|
|
###########################################################################
|
|
|
|
.PHONY: $(nv_kernel_o)
|
|
$(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
|
|
###########################################################################
|
|
|
|
.PHONY: $(nv_modeset_kernel_o)
|
|
$(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.
|
|
###########################################################################
|
|
|
|
.PHONY: modules
|
|
modules: $(nv_kernel_o_binary) $(nv_modeset_kernel_o_binary)
|
|
$(MAKE) -C kernel-open modules
|
|
|
|
###########################################################################
|
|
# Install the built kernel modules using kbuild.
|
|
###########################################################################
|
|
|
|
.PHONY: modules_install
|
|
modules_install:
|
|
$(MAKE) -C kernel-open modules_install
|
|
|
|
###########################################################################
|
|
# clean
|
|
###########################################################################
|
|
|
|
.PHONY: clean
|
|
clean: nvidia.clean nvidia-modeset.clean kernel-open.clean
|
|
|
|
.PHONY: nvidia.clean
|
|
nvidia.clean:
|
|
$(MAKE) -C src/nvidia clean
|
|
|
|
.PHONY: nvidia-modeset.clean
|
|
nvidia-modeset.clean:
|
|
$(MAKE) -C src/nvidia-modeset clean
|
|
|
|
.PHONY: kernel-open.clean
|
|
kernel-open.clean:
|
|
$(MAKE) -C kernel-open clean
|
|
|