mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 09:35:20 +02:00
31 lines
658 B
Makefile
Executable File
31 lines
658 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# This file is in the public domain.
|
|
# You may freely use, modify, distribute, and relicense it.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/buildflags.mk
|
|
|
|
export PREFIX=/usr
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
$(MAKE) spotless
|
|
sh debian/clean.sh
|
|
|
|
override_dh_installchangelogs:
|
|
dpkg-parsechangelog --format rfc822 --all | \
|
|
awk -f debian/changelog.upstream.awk
|
|
dh_installchangelogs debian/changelog.upstream
|
|
|
|
REPO = git://projects.qi-hardware.com/fped.git
|
|
BRANCH = master
|
|
get-orig-source:
|
|
REPO='$(REPO)' BRANCH='$(BRANCH)' \
|
|
sh ./debian/get-orig-source.sh
|
|
|