summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 662befd030bafe0e398e3403e0e106cb80b3fbb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	$(MAKE) CFLAGS="$(CFLAGS)"

override_dh_auto_test:

override_dh_auto_install:
	$(MAKE) prefix=$(CURDIR)/debian/9mount/usr install

	chown root:root debian/9mount/usr/bin/*

override_dh_fixperms:
	dh_fixperms -Xusr/bin/9bind -Xusr/bin/9mount -Xusr/bin/9umount

.PHONY: override_dh_auto_test override_dh_auto_install override_dh_fixperms