Update of /cvsroot/firebug/fireboard/tools/src/xlisten
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv12034
Modified Files:
Makefile
Added Files:
README
Log Message:
Synching with beta failed due to dependencies on
the sensorboard branch.
--- NEW FILE: README ---
This part of the tree needs to be synched with the xlisten
code in the beta branch, which requires the sensorboard
directories to be synched as well.
Index: Makefile
===================================================================
RCS file: /cvsroot/firebug/fireboard/tools/src/xlisten/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 10 Jul 2006 17:18:15 -0000 1.2
--- Makefile 10 Jul 2006 18:19:06 -0000 1.3
***************
*** 1,4 ****
# Makefile for xlisten # $Id$
!
CC = gcc
ARMCC = arm-linux-gcc
--- 1,4 ----
# Makefile for xlisten # $Id$
!
CC = gcc
ARMCC = arm-linux-gcc
***************
*** 7,17 ****
LFLAGS = -lpq -lm
CFLAGS = -O2 -Wall -Wno-format
!
! # Main xlisten sources
SRCS = xpacket.c xconvert.c xdb.c
SRCS += xserial.c xsocket.c args.c
!
! # Add Mote Sensor board support
! SRCS += boards/mts300.c boards/mts400.c boards/mts510.c boards/mts101.c
SRCS += boards/mep500.c boards/mep401.c boards/ggbacltst.c
SRCS += boards/mica2.c boards/mica2dot.c boards/micaz.c boards/fireboard.c
--- 7,17 ----
LFLAGS = -lpq -lm
CFLAGS = -O2 -Wall -Wno-format
!
! # Main xlisten sources
SRCS = xpacket.c xconvert.c xdb.c
SRCS += xserial.c xsocket.c args.c
!
! # Add Mote Sensor board support
! SRCS += boards/mts300.c boards/mts400.c boards/mts510.c boards/mts101.c
SRCS += boards/mep500.c boards/mep401.c boards/ggbacltst.c
SRCS += boards/mica2.c boards/mica2dot.c boards/micaz.c boards/fireboard.c
***************
*** 27,35 ****
INCLUDES = -I../../../tos/sensorboards/mts400/GPS
INCLUDES += -I../../../apps/XSensorMTS400
! INCLUDES += -I../../../fireworks/apps/MultihopLinkEstimator
!
! # Add Mote Data Aquisition board support
! SRCS += boards/mda500.c boards/mda300.c
!
# Add Mica2 integrated sensorboards
SRCS += boards/msp410.c
--- 27,35 ----
INCLUDES = -I../../../tos/sensorboards/mts400/GPS
INCLUDES += -I../../../apps/XSensorMTS400
! INCLUDES += -I../../../beta/fireworks/apps/MultihopLinkEstimator
!
! # Add Mote Data Aquisition board support
! SRCS += boards/mda500.c boards/mda300.c
!
# Add Mica2 integrated sensorboards
SRCS += boards/msp410.c
***************
*** 45,52 ****
all: xlisten fbpacket xlisten-telos
!
! xlisten: $(SRCS)
$(CC) $(CFLAGS) -o $@ xlisten.c $(SRCS) $(INCLUDES) $(LFLAGS)
!
fbpacket: fbpacket.c
$(CC) $(CFLAGS) -o $@ fbpacket.c $(SRCS) $(INCLUDES) $(LFLAGS)
--- 45,52 ----
all: xlisten fbpacket xlisten-telos
!
! xlisten: $(SRCS)
$(CC) $(CFLAGS) -o $@ xlisten.c $(SRCS) $(INCLUDES) $(LFLAGS)
!
fbpacket: fbpacket.c
$(CC) $(CFLAGS) -o $@ fbpacket.c $(SRCS) $(INCLUDES) $(LFLAGS)
***************
*** 54,58 ****
xlisten-telos: $(SRCS)
$(CC) $(CFLAGS) -o $@ -DTELOS_MOTE xlisten.c $(SRCS) $(INCLUDES) $(LFLAGS)
!
xlisten-arm: $(SRCS)
$(ARMCC) -I$(INCDIR) $(INCLUDES) $(CFLAGS) -o $@ $(SRCS) -L$(LIBDIR) $(LFLAGS)
--- 54,58 ----
xlisten-telos: $(SRCS)
$(CC) $(CFLAGS) -o $@ -DTELOS_MOTE xlisten.c $(SRCS) $(INCLUDES) $(LFLAGS)
!
xlisten-arm: $(SRCS)
$(ARMCC) -I$(INCDIR) $(INCLUDES) $(CFLAGS) -o $@ $(SRCS) -L$(LIBDIR) $(LFLAGS)
|