simmer.mk 764 B

12345678910111213141516171819202122232425
  1. # Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
  2. # All rights reserved.
  3. # This component and the accompanying materials are made available
  4. # under the terms of the License "Eclipse Public License v1.0"
  5. # which accompanies this distribution, and is available
  6. # at the URL "http://www.eclipse.org/legal/epl-v10.html".
  7. #
  8. # Initial Contributors:
  9. # Nokia Corporation - initial contribution.
  10. #
  11. # Contributors:
  12. #
  13. # Description:
  14. # Makefile for a compiler simulator
  15. #
  16. #
  17. SOURCEDIR:=$(subst \,/,$(SBS_HOME))/util/simmer
  18. TALONDIR:=$(subst \,/,$(SBS_HOME))/util/talon
  19. TARGET:=simmer
  20. CFLAGS:=$(CFLAGS) -g -I$(TALONDIR)
  21. SOURCES:=$(addprefix $(SOURCEDIR)/,simmer.c) $(addprefix $(TALONDIR)/,log.c) $(addprefix $(SOURCEDIR)/,sim_mallocs.c)
  22. $(eval $(cprogram))