Advertisement
teknoraver

make parenthesis

Aug 24th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.13 KB | None | 0 0
  1. define a
  2.     $(1)
  3. endef
  4.  
  5. define b
  6.     $(call a,
  7.         case '$(1)' in \
  8.         *) echo '$(1)' ;; \
  9.         esac
  10.     )
  11. endef
  12.  
  13. all:
  14.     $(call b, x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement