blob: 3618ad708b43bc6fe9c0ad775e6f59da10612fad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DEB_CFLAGS_MAINT_APPEND = -fgnu89-inline
override_dh_auto_configure:
dh_auto_configure -- $(shell dpkg-buildflags --export=cmdline)
override_dh_auto_build:
LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1 LZO_SUPPORT=1 XZ_SUPPORT=1 \
ZSTD_SUPPORT=1 dh_auto_build
override_dh_auto_install:
dh_auto_install -- \
INSTALL_DIR=$(CURDIR)/debian/squashfs-tools/usr/bin \
INSTALL_MANPAGES_DIR=$(CURDIR)/debian/squashfs-tools/usr/share/man/man1
%:
dh ${@} --sourcedirectory=squashfs-tools/
.PHONY: override_dh_auto_build override_dh_auto_install
|