Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. #!/usr/bin/make -f
  2. # See debhelper(7) (uncomment to enable)
  3. # output every command that modifies files on the build system.
  4. #DH_VERBOSE = 1
  5.  
  6. build: build-arch build-indep
  7. build-arch: build-stamp
  8. build-indep: build-stamp
  9. build-stamp:
  10. dh_testdir
  11. touch build-stamp
  12.  
  13. clean:
  14. dh_testdir
  15. dh_testroot
  16. dh_clean
  17.  
  18.  
  19. install: build
  20. dh_testdir
  21. dh_testroot
  22. dh_prep
  23. dh_installdirs
  24. dh_installcron
  25. dh_install
  26. dh_apache2
  27.  
  28. # Build architecture-independent files here.
  29. binary-indep: build install
  30. dh_testdir
  31. dh_testroot
  32. dh_installchangelogs
  33. dh_installdebconf
  34. dh_installdocs
  35. dh_installexamples
  36. dh_link
  37. dh_compress
  38. dh_fixperms
  39. dh_installdeb
  40. dh_gencontrol
  41. dh_md5sums
  42. dh_builddeb
  43.  
  44. # Build architecture-dependent files here.
  45. binary-arch:
  46.  
  47. binary: binary-indep binary-arch
  48. .PHONY: build clean binary-indep binary-arch binary install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement