20 lines
432 B
Makefile
Executable File
20 lines
432 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
--wrap-mode=default \\
|
|
-Dwith_nvml=enabled \
|
|
-Dinclude_doc=true \
|
|
-Dwith_xnvctrl=enabled \
|
|
-Dwith_x11=enabled \
|
|
-Dwith_wayland=enabled \
|
|
-Dwith_dbus=enabled \
|
|
-Dmangoapp=true \
|
|
-Dmangohudctl=true \
|
|
-Dmangoapp_layer=true
|