Update of /cvsroot/pure-data/externals/miXed/cyclone/shadow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10934/cyclone/shadow
Modified Files: Makefile Makefile.objects Makefile.sources cyclone.c Log Message: various bug-fixes, maxmode, toxy .#args
Index: Makefile.sources =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/shadow/Makefile.sources,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.sources 5 Sep 2003 10:03:46 -0000 1.2 --- Makefile.sources 8 Dec 2004 15:40:11 -0000 1.3 *************** *** 1,4 **** --- 1,5 ---- CX_SOURCES = \ cyclone.c \ + maxmode.c \ dummies.c
Index: cyclone.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/shadow/cyclone.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** cyclone.c 17 Apr 2004 17:45:27 -0000 1.6 --- cyclone.c 8 Dec 2004 15:40:11 -0000 1.7 *************** *** 1,3 **** ! /* Copyright (c) 2003 krzYszcz and others. * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ --- 1,3 ---- ! /* Copyright (c) 2003-2004 krzYszcz and others. * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ *************** *** 123,126 **** --- 123,131 ---- return; } + if (zgetfn(&pd_objectmaker, gensym("cyclone"))) + { + loud_error(0, "cyclone is already loaded"); + return; + } post("this is cyclone %s, %s %s build", CYCLONE_VERSION, loud_ordinal(CYCLONE_BUILD), CYCLONE_RELEASE);
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/shadow/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 23 May 2003 12:29:49 -0000 1.1.1.1 --- Makefile 8 Dec 2004 15:40:11 -0000 1.2 *************** *** 3,7 **** include $(ROOT_DIR)/Makefile.common
! $(ROOT_DIR)/bin/cyclist: $(SHARED_DIR)/common/binport.c ! $(CC) -DBINPORT_STANDALONE -o $@ $< ! --- 3,7 ---- include $(ROOT_DIR)/Makefile.common
! $(ROOT_DIR)/bin/cyclist: $(SHARED_DIR)/common/binport.c \ ! $(SHARED_DIR)/common/lex.c $(SHARED_DIR)/unstable/standalone.c ! $(CC) $(CFLAGS) -DMIXED_STANDALONE -o $@ $^
Index: Makefile.objects =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/cyclone/shadow/Makefile.objects,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.objects 19 Sep 2003 12:19:32 -0000 1.3 --- Makefile.objects 8 Dec 2004 15:40:11 -0000 1.4 *************** *** 2,5 **** --- 2,6 ---- common/loud.o \ common/grow.o \ + common/lex.o \ common/binport.o \ common/port.o \