source: projects/emacsen-common/trunk/apel-sample/usr/share/emacs/site-lisp/apel/make.bat @ 7238

Revision 7238, 1.7 KB checked in by daisuke, 12 years ago (diff)

import emacsen-common

Line 
1@echo off
2rem MAKE.BAT for APEL.
3rem ********************************************************************
4rem * Edit following lines to set PREFIX, EMACS, LISPDIR and VLISPDIR  *
5rem * according to your environment                                    *
6rem ********************************************************************
7rem * for Meadow                                                       *
8rem *   If you use Meadow on Windows NT, use meadowNT.exe insted of    *
9rem *   meadow95.exe                                                   *
10set MEADOWVER=1.10
11set PREFIX=c:\usr\meadow
12set EMACS=%PREFIX%\%MEADOWVER%\bin\meadow95.exe
13set LISPDIR=%PREFIX%\site-lisp
14set VLISPDIR=%PREFIX%\%MEADOWVER%\site-lisp
15rem
16rem ********************************************************************
17rem * for Mule for Windows                                             *
18rem set PREFIX=c:\usr\mule
19rem set EMACS=%PREFIX%\bin\mule.exe
20rem set LISPDIR=%PREFIX%\site-lisp
21rem set VLISPDIR=%LISPDIR%
22rem
23rem ********************************************************************
24rem * for Demacs                                                       *
25rem *  Please add examples for Demacs                                  *
26rem
27rem ********************************************************************
28
29set arg1=%1
30if "%arg1%"=="install" goto install
31if "%arg1%"=="what-where" goto listing
32if "%arg1%"=="clean" goto clean
33
34:install
35%EMACS% -q -batch -no-site-file -l APEL-MK -f compile-apel NONE %LISPDIR% %VLISPDIR%
36%EMACS% -q -batch -no-site-file -l APEL-MK -f install-apel NONE %LISPDIR% %VLISPDIR%
37goto end
38
39:listing
40%EMACS% -batch -q -no-site-file -l APEL-MK -f what-where-apel
41goto end
42
43:clean
44del *.elc
45del *~
46del .#~
47
48:end
49
Note: See TracBrowser for help on using the repository browser.