Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.30 KB | None | 0 0
  1. MAKE = make
  2.  
  3. options ?= "Default."
  4.  
  5.  
  6. usage:
  7.  
  8.     @echo ""
  9.     @echo "Usage:"
  10.     @echo " make start"
  11.     @echo " make speciala"
  12.     @echo " make specialb"
  13.  
  14. start:
  15.  
  16.     @echo $(options)
  17.  
  18.  
  19. speciala:
  20.  
  21.     $(MAKE) options="This is special A." start
  22.  
  23.  
  24. specialb:
  25.  
  26.     $(MAKE) options="This is special B." start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement