mirror of
https://git.proxmox.com/git/proxmox-kernel-helper
synced 2025-08-16 00:20:04 +00:00
19 lines
284 B
Makefile
Executable File
19 lines
284 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
mv debian/proxmox-kernel-helper debian/tmp
|
|
dh_install
|
|
|
|
override_dh_installsystemd:
|
|
dh_installsystemd --no-start
|
|
|
|
.PHONY: build clean
|
|
build clean:
|