summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/make/config.bat
diff options
context:
space:
mode:
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 2d33a61511..0000000000
--- a/apps/codecs/dumb/make/config.bat
+++ /dev/null
@@ -1,33 +0,0 @@
1@ECHO OFF
2
3REM This file does an interactive configuration for users of DOS and Windows.
4REM It creates a config.txt file for inclusion in the Makefile. This batch
5REM file should be run indirectly through the 'make config' target (or the
6REM 'make' target the first time).
7
8IF EXIST make\dumbask.exe GOTO dumbaskok
9ECHO You should not be running this directly! Use 'make' or 'make config'.
10GOTO end
11:dumbaskok
12
13make\dumbask.exe "Would you like to compile DUMB for DJGPP or MinGW (D/M)? " DM
14IF ERRORLEVEL 1 GOTO mingw
15ECHO include make/djgpp.inc>make\config.tmp
16GOTO djgpp
17:mingw
18ECHO include make/mingw.inc>make\config.tmp
19:djgpp
20
21ECHO ALL_TARGETS := core core-examples core-headers>>make\config.tmp
22
23make\dumbask.exe "Would you like support for Allegro (Y/N)? "
24IF NOT ERRORLEVEL 1 ECHO ALL_TARGETS += allegro allegro-examples allegro-headers>>make\config.tmp
25
26IF EXIST make\config.txt DEL make\config.txt
27REN make\config.tmp config.txt
28
29ECHO Configuration complete.
30ECHO Run 'make config' to change it in the future.
31PAUSE
32
33:end