summaryrefslogtreecommitdiff
path: root/src/monkeys_audio_utilities
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2003-01-25 18:24:13 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2003-01-25 18:24:13 +0000
commitd8109c2d93f48bcb75073d407518bb084f4e8d8b (patch)
tree86b8b910d0d317585fb06282ba3c735825001605 /src/monkeys_audio_utilities
parentb026ffdb9b417ceae16230a51dd901ce6e4c9355 (diff)
downloadflac-d8109c2d93f48bcb75073d407518bb084f4e8d8b.tar.gz
obsolete now that .dsp files are complete
Diffstat (limited to 'src/monkeys_audio_utilities')
-rw-r--r--src/monkeys_audio_utilities/Makefile.vc19
-rw-r--r--src/monkeys_audio_utilities/flac_mac/Makefile.vc18
-rw-r--r--src/monkeys_audio_utilities/flac_ren/Makefile.vc18
3 files changed, 0 insertions, 55 deletions
diff --git a/src/monkeys_audio_utilities/Makefile.vc b/src/monkeys_audio_utilities/Makefile.vc
deleted file mode 100644
index e957aa55..00000000
--- a/src/monkeys_audio_utilities/Makefile.vc
+++ /dev/null
@@ -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 ..
diff --git a/src/monkeys_audio_utilities/flac_mac/Makefile.vc b/src/monkeys_audio_utilities/flac_mac/Makefile.vc
deleted file mode 100644
index 42b28f8e..00000000
--- a/src/monkeys_audio_utilities/flac_mac/Makefile.vc
+++ /dev/null
@@ -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
diff --git a/src/monkeys_audio_utilities/flac_ren/Makefile.vc b/src/monkeys_audio_utilities/flac_ren/Makefile.vc
deleted file mode 100644
index 137a49ff..00000000
--- a/src/monkeys_audio_utilities/flac_ren/Makefile.vc
+++ /dev/null
@@ -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