1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
# ********************************* WARNING *********************************
# This Makefile is not supposed to be used outside of certain usecases like
# compiling the driver ("make driver") in this repository or installing the
# files as part of distribution packaging.
#
# Please never run the install targets manually (unless you really know what
# you're doing) as they're not intended to be used like that!
#
# You're in nearly all cases better off following the build instructions
# that you can find in the wiki.
# ***************************************************************************
# PREFIX is used to prefix where the files will be installed under DESTDIR
PREFIX?=/usr
# UDEVDIR is specifically a prefix for udev files
UDEVDIR?=$(shell pkg-config --variable=udevdir udev)
# DESTDIR is used to install into a different root directory
DESTDIR?=/
# Specify the kernel directory to use
KERNELDIR?=/lib/modules/$(shell uname -r)/build
# Need the absolute directory do the driver directory to build kernel modules
DRIVERDIR?=$(shell pwd)/driver
# Where kernel drivers are going to be installed
MODULEDIR?=/lib/modules/$(shell uname -r)/kernel/drivers/hid
DKMS_NAME?=openrazer-driver
DKMS_VER?=3.10.3
# Build all target
all: driver
# Driver compilation
driver:
@echo -e "\n::\033[32m Compiling OpenRazer kernel modules\033[0m"
@echo "========================================"
$(MAKE) -C $(KERNELDIR) M=$(DRIVERDIR) modules
driver_clean:
@echo -e "\n::\033[32m Cleaning OpenRazer kernel modules\033[0m"
@echo "========================================"
$(MAKE) -C "$(KERNELDIR)" M="$(DRIVERDIR)" clean
# Install kernel modules and then update module dependencies
driver_install:
@echo -e "\n::\033[34m Installing OpenRazer kernel modules\033[0m"
@echo "====================================================="
@cp -v $(DRIVERDIR)/*.ko $(DESTDIR)/$(MODULEDIR)
@chown -v root:root $(DESTDIR)/$(MODULEDIR)/*.ko
depmod
# Just use for packaging openrazer, not for installing manually
driver_install_packaging:
@echo -e "\n::\033[34m Installing OpenRazer kernel modules\033[0m"
@echo "====================================================="
@cp -v $(DRIVERDIR)/*.ko $(DESTDIR)/$(MODULEDIR)
# Razer Daemon
daemon_install:
@echo -e "\n::\033[34m Installing OpenRazer Daemon\033[0m"
@echo "====================================================="
make --no-print-directory -C daemon install
ubuntu_daemon_install:
@echo -e "\n::\033[34m Installing OpenRazer Daemon\033[0m"
@echo "====================================================="
make --no-print-directory -C daemon ubuntu_install
# Python Library
python_library_install:
@echo -e "\n::\033[34m Installing OpenRazer python library\033[0m"
@echo "====================================================="
@make --no-print-directory -C pylib install
ubuntu_python_library_install:
@echo -e "\n::\033[34m Installing OpenRazer python library\033[0m"
@echo "====================================================="
@make --no-print-directory -C pylib ubuntu_install
# Legacy XDG autostart
xdg_install:
@mkdir -p $(DESTDIR)/etc/xdg/autostart
@cp -v ./install_files/desktop/openrazer-daemon.desktop $(DESTDIR)/etc/xdg/autostart/openrazer-daemon.desktop
install-systemd:
@make --no-print-directory -C daemon install-systemd
# Clean target
clean: driver_clean
setup_dkms:
@echo -e "\n::\033[34m Installing DKMS files\033[0m"
@echo "====================================================="
install -m 644 -v -D Makefile $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/Makefile
install -m 644 -v -D install_files/dkms/dkms.conf $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/dkms.conf
install -m 755 -v -d driver $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/driver
install -m 644 -v -D driver/Makefile $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/driver/Makefile
install -m 644 -v driver/*.c $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/driver/
install -m 644 -v driver/*.h $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/driver/
rm -fv $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)/driver/*.mod.c
remove_dkms:
@echo -e "\n::\033[34m Removing DKMS files\033[0m"
@echo "====================================================="
rm -rf $(DESTDIR)$(PREFIX)/src/$(DKMS_NAME)-$(DKMS_VER)
udev_install:
@echo -e "\n::\033[34m Installing OpenRazer udev rules\033[0m"
@echo "====================================================="
install -m 644 -v -D install_files/udev/99-razer.rules $(DESTDIR)$(UDEVDIR)/rules.d/99-razer.rules
install -m 755 -v -D install_files/udev/razer_mount $(DESTDIR)$(UDEVDIR)/razer_mount
appstream_install:
@echo -e "\n::\033[34m Installing OpenRazer AppStream metadata\033[0m"
@echo "====================================================="
install -m 644 -v -D install_files/appstream/io.github.openrazer.openrazer.metainfo.xml $(DESTDIR)$(PREFIX)/share/metainfo/io.github.openrazer.openrazer.metainfo.xml
# Install for Ubuntu
# WARNING: do not use this target manually, it is just meant for Debian packaging! Read the warning on top of the file!
ubuntu_install: setup_dkms udev_install ubuntu_daemon_install ubuntu_python_library_install appstream_install
@echo -e "\n::\033[34m Installing for Ubuntu\033[0m"
@echo "====================================================="
install_i_know_what_i_am_doing: all driver_install udev_install python_library_install
@make --no-print-directory -C daemon install DESTDIR=$(DESTDIR)
install: manual_install_msg ;
manual_install_msg:
@echo "Please do not install the driver using this method. Use a distribution package as it tracks the files installed and can remove them afterwards. If you are 100% sure, you want to do this, find the correct target in the Makefile."
@echo "Exiting."
.PHONY: driver
|