18 lines
280 B
Makefile
Executable File
18 lines
280 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DESTDIR = $(CURDIR)/debian/tmp
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
./make.sh clean && ./make.sh
|
|
|
|
override_dh_auto_install:
|
|
./make.sh install
|
|
dh_auto_install
|
|
|
|
.PHONY: override_dh_gencontrol
|
|
override_dh_gencontrol:
|
|
dh_gencontrol -- -Tdebian/substvars
|