t3.mk 955 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
  3. # All rights reserved.
  4. # This component and the accompanying materials are made available
  5. # under the terms of the License "Eclipse Public License v1.0"
  6. # which accompanies this distribution, and is available
  7. # at the URL "http://www.eclipse.org/legal/epl-v10.html".
  8. #
  9. # Initial Contributors:
  10. # Nokia Corporation - initial contribution.
  11. #
  12. # Contributors:
  13. #
  14. # Description:
  15. #
  16. include settings.mk
  17. TALON_RECIPEATTRIBUTES:=name='$$RECIPENAME' host='$$HOSTNAME'
  18. export TALON_RECIPEATTRIBUTES
  19. $(info SHELL="$(SHELL)")
  20. # using an override doesn't i.e. "make SHELL:=xxxx" fails on windows at least.
  21. # so one can try "make TALON:=xxxx" and in the makefile one must set SHELL=$(TALON)
  22. all: hello world
  23. hello:
  24. @echo "some output"
  25. @|RECIPENAME=hello;|echo "The recipe name is $$RECIPENAME"
  26. world:
  27. @echo "more output"
  28. @|RECIPENAME=world;|echo "The recipe name is $$RECIPENAME"