summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/make/config.bat
diff options
context:
space:
mode:
authorMartin Arver <martin.arver@gmail.com>2006-12-11 21:01:14 +0000
committerMartin Arver <martin.arver@gmail.com>2006-12-11 21:01:14 +0000
commit7d820556e95ce8837eaa5baf2f6b5215a4b129ce (patch)
tree686899f7652fcd3c43c321ca53d99bbdfca42847 /apps/codecs/dumb/make/config.bat
parent440513ab6a51c5cc311ce8671180970279e4eaf9 (diff)
downloadrockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.zip
rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.gz
rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.bz2
rockbox-7d820556e95ce8837eaa5baf2f6b5215a4b129ce.tar.xz
Remove the files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11719 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/dumb/make/config.bat')
-rw-r--r--apps/codecs/dumb/make/config.bat33
1 files changed, 0 insertions, 33 deletions
diff --git a/apps/codecs/dumb/make/config.bat b/apps/codecs/dumb/make/config.bat
deleted file mode 100644
index 2d33a61..0000000
--- a/apps/codecs/dumb/make/config.bat
+++ /dev/null
@@ -1,33 +0,0 @@
-@ECHO OFF
-
-REM This file does an interactive configuration for users of DOS and Windows.
-REM It creates a config.txt file for inclusion in the Makefile. This batch
-REM file should be run indirectly through the 'make config' target (or the
-REM 'make' target the first time).
-
-IF EXIST make\dumbask.exe GOTO dumbaskok
-ECHO You should not be running this directly! Use 'make' or 'make config'.
-GOTO end
-:dumbaskok
-
-make\dumbask.exe "Would you like to compile DUMB for DJGPP or MinGW (D/M)? " DM
-IF ERRORLEVEL 1 GOTO mingw
-ECHO include make/djgpp.inc>make\config.tmp
-GOTO djgpp
-:mingw
-ECHO include make/mingw.inc>make\config.tmp
-:djgpp
-
-ECHO ALL_TARGETS := core core-examples core-headers>>make\config.tmp
-
-make\dumbask.exe "Would you like support for Allegro (Y/N)? "
-IF NOT ERRORLEVEL 1 ECHO ALL_TARGETS += allegro allegro-examples allegro-headers>>make\config.tmp
-
-IF EXIST make\config.txt DEL make\config.txt
-REN make\config.tmp config.txt
-
-ECHO Configuration complete.
-ECHO Run 'make config' to change it in the future.
-PAUSE
-
-:end