From 27be5bc72855a0fbbdae230bc144624c9eb85f5e Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Thu, 17 Mar 2005 20:50:03 +0000 Subject: Initial check in dumb 0.9.2 - has a few usages of floating point that should be rewritten to fixed point. seems to compile cleanly for iriver. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6197 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/dumb/make/config.bat | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 apps/codecs/dumb/make/config.bat (limited to 'apps/codecs/dumb/make/config.bat') diff --git a/apps/codecs/dumb/make/config.bat b/apps/codecs/dumb/make/config.bat new file mode 100644 index 0000000000..2d33a61511 --- /dev/null +++ b/apps/codecs/dumb/make/config.bat @@ -0,0 +1,33 @@ +@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 -- cgit v1.2.3