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,19 +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 flac_mac
nmake /f Makefile.vc
cd ..
cd flac_ren
nmake /f Makefile.vc
cd ..
clean:
cd flac_mac
nmake /f Makefile.vc clean
cd ..
cd flac_ren
nmake /f Makefile.vc clean
cd ..

View File

@@ -1,18 +0,0 @@
!include <win32.mak>
.c.obj:
$(cc) $(cdebug) $(cflags) -DSTRICT -YX /O2 -DNODEBUG $<
C_FILES= \
main.c
OBJS= $(C_FILES:.c=.obj)
all: flac_mac.exe
flac_mac.exe: $(OBJS)
link.exe $(OBJS) -out:$*.exe
clean:
-del *.obj *.pch
-del flac_mac.exe

View File

@@ -1,18 +0,0 @@
!include <win32.mak>
.c.obj:
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -YX /O2 -DNODEBUG $<
C_FILES= \
main.c
OBJS= $(C_FILES:.c=.obj)
all: flac_ren.exe
flac_ren.exe: $(OBJS)
link.exe $(OBJS) -out:$*.exe
clean:
-del *.obj *.pch
-del flac_ren.exe