diff options
Diffstat (limited to 'ViCious')
-rw-r--r-- | ViCious/cyclone/makefile | 2 | ||||
-rw-r--r-- | ViCious/cyclone/objects | 1 | ||||
-rw-r--r-- | ViCious/notes.txt | 8 | ||||
-rw-r--r-- | ViCious/pddp/makefile | 2 | ||||
-rw-r--r-- | ViCious/toxy/makefile | 2 |
5 files changed, 12 insertions, 3 deletions
diff --git a/ViCious/cyclone/makefile b/ViCious/cyclone/makefile index 4ae0367..fad65b0 100644 --- a/ViCious/cyclone/makefile +++ b/ViCious/cyclone/makefile @@ -12,7 +12,7 @@ VCLIBDIR = "e:\Program Files\Microsoft Visual Studio\Vc98\lib" ZIPCOMMAND = d:\dosowe\arc\info-zip\zip
INCLUDES = /I. /I$(SHAREDDIR) /I$(PDDIR)\src
-CFLAGS = /W3 /WX /DNT /DMSW /DPD /nologo
+CFLAGS = /O2 /W3 /WX /DNT /DMSW /DPD /nologo
LIBS = $(VCLIBDIR)\libc.lib \
$(VCLIBDIR)\oldnames.lib \
diff --git a/ViCious/cyclone/objects b/ViCious/cyclone/objects index 893d04b..66c21db 100644 --- a/ViCious/cyclone/objects +++ b/ViCious/cyclone/objects @@ -161,6 +161,7 @@ ALL_SICKLES = \ $(SRCDIR)\sickle\minmax.obj \
$(SRCDIR)\sickle\mstosamps.obj \
$(SRCDIR)\sickle\onepole.obj \
+ $(SRCDIR)\sickle\overdrive.obj \
$(SRCDIR)\sickle\peakamp.obj \
$(SRCDIR)\sickle\peek.obj \
$(SRCDIR)\sickle\phasewrap.obj \
diff --git a/ViCious/notes.txt b/ViCious/notes.txt new file mode 100644 index 0000000..c996319 --- /dev/null +++ b/ViCious/notes.txt @@ -0,0 +1,8 @@ +TODO for ViCious + * use a newer default compiler than 6.0 + * conditionally use posix features (float versions of math calls, dirent) + +DONE for ViCious + +with cyclone alpha55 + * /O2 added to all makefiles (why was it not there in the first place?) diff --git a/ViCious/pddp/makefile b/ViCious/pddp/makefile index fee9c8e..657b0a7 100644 --- a/ViCious/pddp/makefile +++ b/ViCious/pddp/makefile @@ -12,7 +12,7 @@ VCLIBDIR = "e:\Program Files\Microsoft Visual Studio\Vc98\lib" ZIPCOMMAND = d:\dosowe\arc\info-zip\zip
INCLUDES = /I. /I$(SHAREDDIR) /I$(PDDIR)\src
-CFLAGS = /W3 /WX /DNT /DMSW /DPD /nologo
+CFLAGS = /O2 /W3 /WX /DNT /DMSW /DPD /nologo
LIBS = $(VCLIBDIR)\libc.lib \
$(VCLIBDIR)\oldnames.lib \
diff --git a/ViCious/toxy/makefile b/ViCious/toxy/makefile index 2cf8c51..fa59913 100644 --- a/ViCious/toxy/makefile +++ b/ViCious/toxy/makefile @@ -12,7 +12,7 @@ VCLIBDIR = "e:\Program Files\Microsoft Visual Studio\Vc98\lib" ZIPCOMMAND = d:\dosowe\arc\info-zip\zip
INCLUDES = /I. /I$(SHAREDDIR) /I$(PDDIR)\src
-CFLAGS = /W3 /WX /DNT /DMSW /DPD /nologo
+CFLAGS = /O2 /W3 /WX /DNT /DMSW /DPD /nologo
LIBS = $(VCLIBDIR)\libc.lib \
$(VCLIBDIR)\oldnames.lib \
|