49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/mtt.
$(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/mtt
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
dh_testdir
dh_testroot
|
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/mtt.
$(MAKE) install install-doc install-xfig DESTDIR=$(CURDIR)/debian/mtt
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
dh_testdir
dh_testroot
|