obsolete now that .dsp files are complete

This commit is contained in:
Josh Coalson
2003-01-25 18:24:13 +00:00
parent b026ffdb9b
commit d8109c2d93
25 changed files with 0 additions and 979 deletions

View File

@@ -1,31 +0,0 @@
!include <win32.mak>
# It's less hassle to spell it all out that to figure out how to do it right with nmake:
all:
cd gain_analysis
nmake /f Makefile.vc
cd ..
cd getopt
nmake /f Makefile.vc
cd ..
cd grabbag
nmake /f Makefile.vc
cd ..
cd utf8
nmake /f Makefile.vc
cd ..
clean:
cd gain_analysis
nmake /f Makefile.vc clean
cd ..
cd getopt
nmake /f Makefile.vc clean
cd ..
cd grabbag
nmake /f Makefile.vc clean
cd ..
cd utf8
nmake /f Makefile.vc clean
cd ..

View File

@@ -1,23 +0,0 @@
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\..\include\share" -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\..\include\share" -DSTRICT -YX -DNODEBUG $<
!endif
C_FILES= \
gain_analysis.c \
OBJS= $(C_FILES:.c=.obj)
all: gain_analysis_static.lib
gain_analysis_static.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/release/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\..\obj\release\lib\gain_analysis_static.lib ..\..\..\obj\release\lib\gain_analysis_static.pdb

View File

@@ -1,24 +0,0 @@
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX -DNODEBUG $<
!endif
C_FILES= \
getopt.c \
getopt1.c
OBJS= $(C_FILES:.c=.obj)
all: getopt_static.lib
getopt_static.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/release/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\..\obj\release\lib\getopt_static.lib ..\..\..\obj\release\lib\getopt_static.pdb

View File

@@ -1,26 +0,0 @@
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\..\include" -DFLAC__NO_DLL -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\..\include" -DFLAC__NO_DLL -DSTRICT -YX -DNODEBUG $<
!endif
C_FILES= \
cuesheet.c \
file.c \
replaygain.c \
seektable.c
OBJS= $(C_FILES:.c=.obj)
all: grabbag_static.lib
grabbag_static.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/release/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\..\obj\release\lib\grabbag_static.lib ..\..\..\obj\release\lib\grabbag_static.pdb

View File

@@ -1,25 +0,0 @@
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX -DNODEBUG $<
!endif
C_FILES= \
charset.c \
iconvert.c \
utf8.c
OBJS= $(C_FILES:.c=.obj)
all: utf8_static.lib
utf8_static.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../../obj/release/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\..\obj\release\lib\utf8_static.lib ..\..\..\obj\release\lib\utf8_static.pdb