File: configur.bat.in

package info (click to toggle)
gtypist 2.8.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,496 kB
  • ctags: 1,265
  • sloc: ansic: 9,652; sh: 4,890; makefile: 509; perl: 394; awk: 374; yacc: 316; lisp: 195; sed: 16
file content (69 lines) | stat: -rw-r--r-- 2,715 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@echo off

echo.
echo GNU Typist can be built as either a Windows console or DOS application.
echo Please choose one:
echo.
echo [1] Windows (using MinGW)
echo [2] DOS (using DJGPP)
echo.
set /p _config_choice=Enter your choice: 
echo.
if "%_config_choice%"=="1" goto windows
if "%_config_choice%"=="2" goto dos
echo Invalid choice.
goto end

:windows
echo Configuring gtypist @VERSION
echo Using MinGW and PDCurses
echo No Native Language Support
echo Creating src\config.h
echo /* config.h */> src\config.h
echo #undef ENABLE_NLS>> src\config.h
echo #define PACKAGE "gtypist">> src\config.h
echo #define VERSION "@VERSION">> src\config.h
echo #define HAVE_LIBCURSES>> src\config.h
echo Creating Makefile
echo # gtypist: Makefile for MinGW> Makefile
echo # By Paul Goins: general@vultaire.net>> Makefile
echo # Based off the makefile generated for DJGPP>> Makefile
echo #>> Makefile
echo # Building under MinGW requires PDCurses, available from>> Makefile
echo # pdcurses.sourceforge.net.  This was tested using a plain PDCurses build>> Makefile
echo # (static, non-Unicode).  If building PDCurses using the win32\mingwin32.mak>> Makefile
echo # make file, make sure that Windows copy/del are in your path (mainly an issue>> Makefile
echo # for MSys users).  Also, the link libs probably will not be preceded with>> Makefile
echo # "lib", so you'll need to rename pdcurses.a, panel.a to>> Makefile
echo # libpdcurses.a, libpanel.a by hand.>> Makefile
echo.>> Makefile
echo # Define the path to a compiled PDCurses library below.>> Makefile
echo PDCURSES_PATH=c:/devel/pdcurses>> Makefile
echo.>> Makefile
echo gtypist.exe:>> Makefile
echo 	gcc -DMINGW -I$(PDCURSES_PATH) -Isrc -static -s -O2 -DNCURSES -DPDCURSES_ENTER_KEY_FIX -o gtypist src/error.c src/script.c src/cursmenu.c src/gtypist.c src/getopt.c src/getopt1.c -L$(PDCURSES_PATH)/win32 -lpdcurses -lpanel>> Makefile
echo.
echo NOTE: Before running make, change the PDCURSES_PATH variable in the Makefile!
echo.
goto end

:dos
echo Configuring gtypist @VERSION
echo Using DJGPP and PDCURSES
echo No Native Language Support
echo Creating src\config.h
echo /* config.h */> src\config.h
echo #undef ENABLE_NLS>> src\config.h
echo #define PACKAGE "gtypist">> src\config.h
echo #define VERSION "@VERSION">> src\config.h
echo #define HAVE_LIBCURSES>> src\config.h
echo Creating Makefile
echo # Makefile> Makefile
echo gtypist.exe: Makefile src\gtypist.c>> Makefile
echo 	gcc -Isrc -static -O -DNCURSES -DPDCURSES_ENTER_KEY_FIX -o gtypist src\error.c src\script.c src\cursmenu.c src\gtypist.c src\getopt.c src\getopt1.c -lpdcurses -lpanel>> Makefile

goto end

:end
set _config_choice=
@echo on