[Firebug-cvs] fireboard/beta/tools/src/xlisten Makefile,1.10,1.11
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2005-08-01 15:28:09
|
Update of /cvsroot/firebug/fireboard/beta/tools/src/xlisten In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3535 Modified Files: Makefile Log Message: Added telos processing to xlisten. Index: Makefile =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/tools/src/xlisten/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 30 Jul 2005 03:14:58 -0000 1.10 --- Makefile 1 Aug 2005 15:27:33 -0000 1.11 *************** *** 40,44 **** SRCS += timestamp/timestamp.c ! all: xlisten fbpacket xlisten: $(SRCS) --- 40,44 ---- SRCS += timestamp/timestamp.c ! all: xlisten fbpacket xlisten-telos xlisten: $(SRCS) *************** *** 48,51 **** --- 48,54 ---- $(CC) $(CFLAGS) -o $@ fbpacket.c $(SRCS) $(INCLUDES) $(LFLAGS) + 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) |