blob: d59c00de4b04c6cdb904227f53d2174ce0e76b27 (
plain)
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
|
REM This is the installation batch file skeleton for emtex
REM users. Please check this file carefully whether it
REM matches your system before you commit any changes.
REM
REM How to proceed:
REM
REM 1. Check for your drives and paths.
REM 2. Correct the following md and copy statements where
REM necessary.
REM 3. Rename this file from EMTEX to EMTEX.BAT
REM 4. Execute EMTEX.BAT
ECHO Creating following directories:
md \emtex\texinput\clock
md \emtex\mfinput\clock
md \emtex\tfm\clock
md \emtex\doc\clock
ECHO Copying contents into newly created directories:
copy texinput\*.* \emtex\texinput\clock\
copy mfinput\*.* \emtex\mfinput\clock\
copy tfm\*.* \emtex\tfm\clock\
copy doc\*.* \emtex\doc\clock\
|