descramble.mk 680 B

123456789101112131415161718192021222324252627282930
  1. # Copyright (c) 2006-2010 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. # Utility makefile
  15. #
  16. #
  17. TARGET:=sbs_descramble
  18. SOURCES:=$(SBS_HOME:\=/)/util/descramble/descramble.cpp
  19. ifeq ($(filter win,$(HOSTPLATFORM)),win)
  20. CFLAGS:=-DWIN32
  21. LDFLAGS:=
  22. else
  23. CFLAGS:=
  24. LDFLAGS:=-lpthread
  25. endif
  26. $(eval $(cppprogram))