[Dfsm-devel] dFSM Makefile,1.12,1.13 README,1.4,1.5
Status: Beta
Brought to you by:
amoreno
|
From: Andreu M. <am...@us...> - 2004-04-07 03:57:22
|
Update of /cvsroot/dfsm/dFSM In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23396 Modified Files: Makefile README Log Message: Add Spread Group Communication System support Index: README =================================================================== RCS file: /cvsroot/dfsm/dFSM/README,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** README 11 May 2003 19:37:32 -0000 1.4 --- README 7 Apr 2004 03:44:26 -0000 1.5 *************** *** 4,8 **** http://dfsm.sourceforge.net http://www.sourceforge.net/projects/dfsm - http://dfsm.euss.es The Distributed Finite State Machine Project (dFSM Project) aims to develop a --- 4,7 ---- *************** *** 57,60 **** --- 56,63 ---- transition code) and "events server"(To receive events) 12. Multilevel log system. + 13. Timer service + 14. Monitor tool + 15. Supervisor tool for launch ans supervise automatas + 16. Add support for Spread Group Communication System ================================ *************** *** 69,71 **** http://www.omg.org. [5] R.J. Wieringa. 2003. Design Methods for Reactive Systems, Yourdon, ! Statemate and the UML, Morgan \ No newline at end of file --- 72,82 ---- http://www.omg.org. [5] R.J. Wieringa. 2003. Design Methods for Reactive Systems, Yourdon, ! Statemate and the UML, Morgan ! ! ================================ ! Spread group communication system support ! ================================ ! 1. Install Spread (http://www.spread.org) (Devian: apt-get install spread) ! 2. Uncomment line "gcs=SPREAD" in main Makefile ! 3. Compile the dFSM ! 4. Run test examples, now communicate between them with spread Index: Makefile =================================================================== RCS file: /cvsroot/dfsm/dFSM/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 11 Dec 2003 06:08:49 -0000 1.12 --- Makefile 7 Apr 2004 03:44:26 -0000 1.13 *************** *** 1,4 **** --- 1,16 ---- # Makefile for dfsm + # Uncomment to have Spread support + # gcs=SPREAD + + ifeq ($(gcs),SPREAD) + export GCSLIBS=-lspread + export GCSFLAGS=-DSPREAD + else + export GCSLIBS= + export GCSFLAGS= + endif + + ifndef prefix prefix:=/usr |