mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
37 lines
571 B
Makefile
Executable File
37 lines
571 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
build: build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
$(MAKE)
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
perl Makefile.PL
|
|
-$(MAKE) realclean
|
|
dh_clean
|
|
|
|
binary-arch: build
|
|
|
|
binary-indep: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
$(MAKE) install PREFIX=`pwd`/debian/apt-src/usr
|
|
dh_installdocs
|
|
dh_installchangelogs
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_perl
|
|
dh_installdeb
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary
|