Advertisement
Guest User

Untitled

a guest
May 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.41 KB | None | 0 0
  1. #!/usr/bin/make -f
  2. # -*- makefile -*-
  3.  
  4. clean:
  5.     dh_testdir
  6.     dh_testroot
  7.     dh_clean
  8.     dh_auto_clean
  9.     rm -rf build build-stamp*
  10.  
  11. build:
  12.     python luksmanager-local/ui/generate.py
  13.     dh_auto_build
  14.  
  15. install:
  16.     dh_testdir
  17.     dh_testroot
  18.     dh_clean -k
  19.     dh_installdirs
  20.     dh_auto_install
  21.     dh_install
  22.  
  23. binary: build install
  24.     dh_link
  25.     dh_installudev
  26.     dh_fixperms
  27.     dh_installdeb
  28.     dh_md5sums
  29.     dh_gencontrol
  30.     dh_builddeb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement