[Tinyos-2-commits] CVS: tinyos-2.x/apps/tosthreads/apps/TestBlockStorage Makefile, 1.3, 1.4

Kevin Klues klueska at users.sourceforge.net
Thu Jul 24 14:18:35 PDT 2008


Update of /cvsroot/tinyos/tinyos-2.x/apps/tosthreads/apps/TestBlockStorage
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14441

Modified Files:
	Makefile 
Log Message:
Update to add all supported platforms for compile

Index: Makefile
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/tosthreads/apps/TestBlockStorage/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile	21 Jul 2008 23:08:35 -0000	1.3
--- Makefile	24 Jul 2008 21:18:33 -0000	1.4
***************
*** 1,10 ****
  COMPONENT=TestBlockStorageAppC
  
! ifneq ($(filter telosb,$(MAKECMDGOALS)),)
!   CFLAGS+=-DUSE_STM25P
! endif
! ifneq ($(filter micaz iris,$(MAKECMDGOALS)),)
!   CFLAGS+=-DUSE_AT45DB
  endif
  
- include $(MAKERULES)
--- 1,20 ----
  COMPONENT=TestBlockStorageAppC
+ THIS_SUPPORTED_PLATFORMS=tmote telos telosb eyesIFXv1 eyesIFXv2 mica2 mica2dot telosa eyesIFX micaz iris tinynode
  
! ifneq ($(filter $(THIS_SUPPORTED_PLATFORMS) clean,$(MAKECMDGOALS)),)
! 	ifneq ($(filter tmote telos telosb eyesIFXv1,$(MAKECMDGOALS)),)
! 		CFLAGS+=-DUSE_STM25P
! 	endif
! 	ifneq ($(filter mica2 telosa mica2dot eyesIFX eyesIFXv2 micaz iris tinynode,$(MAKECMDGOALS)),)
! 		CFLAGS+=-DUSE_AT45DB
! 	endif
! 
! 	include $(MAKERULES)
! else
! %:
! 	@echo "    Sorry, this application is only written to work with the following platforms:"
! 	@echo "        $(THIS_SUPPORTED_PLATFORMS)"
! threads:
! 	@:
  endif
  



More information about the Tinyos-2-commits mailing list