You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.5 KiB

16 years ago
16 years ago
  1. #!/usr/bin/make -f
  2. # -*- makefile -*-
  3. # Sample debian/rules that uses debhelper.
  4. # This file was originally written by Joey Hess and Craig Small.
  5. # As a special exception, when this file is copied by dh-make into a
  6. # dh-make output file, you may use that output file without restriction.
  7. # This special exception was added by Craig Small in version 0.37 of dh-make.
  8. # Uncomment this to turn on verbose mode.
  9. #export DH_VERBOSE=1
  10. config.status: configure
  11. dh_testdir
  12. touch $@
  13. build:
  14. dh_testdir
  15. # Add here commands to compile the package.
  16. $(MAKE)
  17. touch $@
  18. clean:
  19. dh_testdir
  20. dh_testroot
  21. rm -f build
  22. # Add here commands to clean up after the build process.
  23. [ ! -f Makefile ] || $(MAKE) clean
  24. dh_clean
  25. install: build
  26. dh_testdir
  27. dh_testroot
  28. dh_clean -k
  29. dh_installdirs
  30. $(MAKE) DESTDIR=$(CURDIR)/debian/i3lock/ install
  31. # Build architecture-independent files here.
  32. binary-indep: build install
  33. # We have nothing to do by default.
  34. # Build architecture-dependent files here.
  35. binary-arch: build install
  36. dh_testdir
  37. dh_testroot
  38. dh_installchangelogs
  39. dh_installdocs
  40. dh_installexamples
  41. # dh_install
  42. # dh_installmenu
  43. dh_installdebconf
  44. # dh_installlogrotate
  45. # dh_installemacsen
  46. # dh_installpam
  47. # dh_installmime
  48. # dh_python
  49. dh_installinit
  50. # dh_installcron
  51. # dh_installinfo
  52. dh_installman
  53. dh_link
  54. # dh_strip
  55. dh_compress
  56. dh_fixperms -Xusr/bin/i3lock
  57. # dh_perl
  58. # dh_makeshlibs
  59. dh_installdeb
  60. dh_shlibdeps
  61. dh_gencontrol
  62. dh_md5sums
  63. dh_builddeb
  64. binary: binary-indep binary-arch
  65. .PHONY: build clean binary-indep binary-arch binary install