
- add DEB package creation functionality - update RPM spec file to work with SLES Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
22 lines
396 B
Makefile
Executable File
22 lines
396 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# output every command that modifies files on the build system
|
|
#export DH_VERBOSE = 1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure :
|
|
./configure
|
|
|
|
override_dh_auto_install :
|
|
make install_files DESTDIR="$(shell pwd)/debian/tmp"
|
|
|
|
override_dh_installsystemd :
|
|
dh_installsystemd --no-start
|
|
|
|
override_dh_missing :
|
|
|
|
override_dh_gencontrol :
|
|
dh_gencontrol -- -Vkver="$(shell uname -r)"
|