mirror of
https://github.com/lretq/fake-battery-linux.git
synced 2026-08-22 13:27:19 +00:00
15 lines
421 B
Makefile
Executable File
15 lines
421 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PACKAGE_NAME=$(shell grep PACKAGE_NAME= dkms.conf | cut -d= -f2 | cut -d\" -f2)
|
|
PACKAGE_VERSION=$(shell grep PACKAGE_VERSION= dkms.conf | cut -d= -f2 | cut -d\" -f2)
|
|
export PACKAGE_NAME PACKAGE_VERSION
|
|
|
|
%:
|
|
dh $@ --with dkms
|
|
|
|
# Nothing to configure, build or auto-install (this all happens after
|
|
# installation using dkms)
|
|
override_dh_auto_configure:
|
|
override_dh_auto_build:
|
|
override_dh_auto_install:
|