Guest User

Untitled

a guest
Oct 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $ cat rules
  2. #!/usr/bin/make -f
  3. # -*- makefile -*-
  4. # Sample debian/rules that uses debhelper.
  5. # This file was originally written by Joey Hess and Craig Small.
  6. # As a special exception, when this file is copied by dh-make into a
  7. # dh-make output file, you may use that output file without restriction.
  8. # This special exception was added by Craig Small in version 0.37 of dh-make.
  9.  
  10. # Uncomment this to turn on verbose mode.
  11. #export DH_VERBOSE=1
  12.  
  13. %:
  14. dh $@
  15.  
  16. override_dh_auto_build:
  17. gcc $(CFLAGS) $(LDFLAGS) unyaffs.c -o unyaffs
  18.  
  19. override_dh_auto_clean:
  20. rm -f unyaffs
  21. dh_auto_clean
Add Comment
Please, Sign In to add comment