blob: b1cd55b3915449611811609c2d61e20b019d8c9f (
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
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
|
XCOMM!/bin/sh
XCOMM
XCOMM Copyright 1993 Rainer Klute
XCOMM <klute@irb.informatik.uni-dortmund.de>
XCOMM
XCOMM generate a Makefile from an Imakefile using Imake-TeX rules
XCOMM
XCOMM $Id: texmkmf.cpp,v 0.91 1993/03/17 11:03:42 klute Exp klute $
usage="usage: $0 [-a] [top_of_sources_pathname [current_directory]]"
topdir=
curdir=.
do_all=
case "$1" in
-a)
do_all="yes"
shift
;;
esac
case $# in
0) ;;
1) topdir=$1 ;;
2) topdir=$1 curdir=$2 ;;
*) echo "$usage" 1>&2; exit 1 ;;
esac
case "$topdir" in
-*) echo "$usage" 1>&2; exit 1 ;;
esac
if [ -f Makefile ]; then
echo mv Makefile Makefile.bak
mv Makefile Makefile.bak
fi
if [ "$topdir" = "" ]; then
args="-DUseInstalled "CONFIGDIRSPEC
else
args="-I$topdir/config -DTOPDIR=$topdir -DCURDIR=$curdir"
fi
echo imake $args
case "$do_all" in
yes)
imake $args &&
echo "make Makefiles" &&
make Makefiles &&
echo "make includes" &&
make includes &&
echo "make depend" &&
make depend
;;
*)
imake $args
;;
esac
|