Update of /cvsroot/pure-data/externals/miXed/ViCious/cyclone In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10934/ViCious/cyclone
Modified Files: makefile objects snapfiles Log Message: various bug-fixes, maxmode, toxy .#args
Index: snapfiles =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/ViCious/cyclone/snapfiles,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** snapfiles 31 Mar 2004 10:24:16 -0000 1.1 --- snapfiles 8 Dec 2004 15:40:10 -0000 1.2 *************** *** 4,7 **** --- 4,8 ---- miXed\bin\sickle.dll \ miXed\bin\dummies.dll \ + miXed\bin\maxmode.dll \ miXed\bin\cyclist.exe \ miXed\ViCious\cyclone\makefile \
Index: objects =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/ViCious/cyclone/objects,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** objects 12 May 2004 15:01:34 -0000 1.3 --- objects 8 Dec 2004 15:40:10 -0000 1.4 *************** *** 4,7 **** --- 4,8 ---- $(SHAREDDIR)\common\loud.obj \ $(SHAREDDIR)\common\grow.obj \ + $(SHAREDDIR)\common\lex.obj \ $(SHAREDDIR)\common\binport.obj \ $(SHAREDDIR)\common\port.obj \ *************** *** 99,105 **** $(SHAREDDIR)\common\rand.obj \ $(SHAREDDIR)\common\vefl.obj \ - $(SHAREDDIR)\common\sq.obj \ - $(SHAREDDIR)\common\bifi.obj \ $(SHAREDDIR)\common\mifi.obj \ $(SHAREDDIR)\common\binport.obj \ $(SHAREDDIR)\common\port.obj \ --- 100,105 ---- $(SHAREDDIR)\common\rand.obj \ $(SHAREDDIR)\common\vefl.obj \ $(SHAREDDIR)\common\mifi.obj \ + $(SHAREDDIR)\common\lex.obj \ $(SHAREDDIR)\common\binport.obj \ $(SHAREDDIR)\common\port.obj \ *************** *** 109,114 **** $(SHAREDDIR)\unstable\forky.obj \ $(SHAREDDIR)\unstable\fragile.obj \ ! $(SHAREDDIR)\unstable\fringe.obj \ ! $(SHAREDDIR)\unstable\loader.obj
ALL_SICKLES = \ --- 109,113 ---- $(SHAREDDIR)\unstable\forky.obj \ $(SHAREDDIR)\unstable\fragile.obj \ ! $(SHAREDDIR)\unstable\fringe.obj
ALL_SICKLES = \ *************** *** 196,199 **** --- 195,200 ---- $(SHAREDDIR)\common\grow.obj \ $(SHAREDDIR)\common\vefl.obj \ + $(SHAREDDIR)\common\clc.obj \ + $(SHAREDDIR)\common\lex.obj \ $(SHAREDDIR)\common\binport.obj \ $(SHAREDDIR)\common\port.obj \ *************** *** 203,208 **** $(SHAREDDIR)\unstable\forky.obj \ $(SHAREDDIR)\unstable\fragile.obj \ ! $(SHAREDDIR)\unstable\fringe.obj \ ! $(SHAREDDIR)\unstable\loader.obj
DUMMIES_OBJECTS = \ --- 204,208 ---- $(SHAREDDIR)\unstable\forky.obj \ $(SHAREDDIR)\unstable\fragile.obj \ ! $(SHAREDDIR)\unstable\fringe.obj
DUMMIES_OBJECTS = \ *************** *** 210,213 **** --- 210,214 ---- $(SHAREDDIR)\common\loud.obj \ $(SHAREDDIR)\common\grow.obj \ + $(SHAREDDIR)\common\lex.obj \ $(SHAREDDIR)\common\binport.obj \ $(SHAREDDIR)\common\port.obj \ *************** *** 216,220 **** $(SHAREDDIR)\unstable\fringe.obj
! CYCLIST_OBJECTS = \ ! $(SHAREDDIR)\common\binport.obj ! --- 217,222 ---- $(SHAREDDIR)\unstable\fringe.obj
! MAXMODE_OBJECTS = \ ! $(SRCDIR)\shadow\maxmode.obj \ ! $(SHAREDDIR)\common\loud.obj \ ! $(SHAREDDIR)\unstable\loader.obj
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/ViCious/cyclone/makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** makefile 31 Mar 2004 10:24:16 -0000 1.1 --- makefile 8 Dec 2004 15:40:10 -0000 1.2 *************** *** 26,30 **** !INCLUDE $(SRCDIR)\build_counter
! cyclone: cyclone.dll hammer.dll sickle.dll dummies.dll cyclist.exe @cd $(ROOTDIR) @$(ZIPCOMMAND) cyclone-$(CYCLONE_SNAPSHOT).zip $(SNAPFILES) --- 26,30 ---- !INCLUDE $(SRCDIR)\build_counter
! cyclone: cyclone.dll hammer.dll sickle.dll dummies.dll maxmode.dll cyclist.exe @cd $(ROOTDIR) @$(ZIPCOMMAND) cyclone-$(CYCLONE_SNAPSHOT).zip $(SNAPFILES) *************** *** 58,67 **** -del $(@:.dll=.lib)
! cyclist.exe: $(SHAREDDIR)\common\binport.c ! -del /S $(SHAREDDIR)\common\binport.obj ! -cl $(CFLAGS) $(INCLUDES) /DBINPORT_STANDALONE /o $@ \ ! $(VCLIBDIR)\libc.lib $(SHAREDDIR)\common\binport.c -@move $@ $(BINDIR) ! -del /S binport.obj
.c.obj: ; cl /c $(CFLAGS) $(INCLUDES) /Fo$*.obj $*.c --- 58,76 ---- -del $(@:.dll=.lib)
! maxmode.dll: $(MAXMODE_OBJECTS) ! -link /dll /out:$@ $(LIBS) $** /export:$(@:.dll=_setup) ! -@copy $@ $(EXTDIR) -@move $@ $(BINDIR) ! -del $(@:.dll=.exp) ! -del $(@:.dll=.lib) ! ! cyclist.exe: $(SHAREDDIR)\common\binport.c \ ! $(SHAREDDIR)\common\lex.c $(SHAREDDIR)\unstable\standalone.c ! -del /S $(SHAREDDIR)\common\binport.obj $(SHAREDDIR)\common\lex.obj ! -cl $(CFLAGS) $(INCLUDES) /DMIXED_STANDALONE /o $@ \ ! $(VCLIBDIR)\libc.lib $(SHAREDDIR)\common\binport.c \ ! $(SHAREDDIR)\common\lex.c $(SHAREDDIR)\unstable\standalone.c ! -@move $@ $(BINDIR) ! -del /S binport.obj lex.obj
.c.obj: ; cl /c $(CFLAGS) $(INCLUDES) /Fo$*.obj $*.c