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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*
* Copyright 1989 Dirk Grunwald
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation, and that the name of Dirk Grunwald or M.I.T.
* not be used in advertising or publicity pertaining to distribution of
* the software without specific, written prior permission. Dirk
* Grunwald and M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
*
* DIRK GRUNWALD AND M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL M.I.T. BE LIABLE FOR ANY SPECIAL, INDIRECT
* OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
* OR PERFORMANCE OF THIS SOFTWARE.
*
* Author:
* Dr. Dirk Grunwald
* Dept. of Computer Science
* Campus Box 430
* Univ. of Colorado, Boulder
* Boulder, CO 80309
*
* grunwald@colorado.edu
*
*/
#define IHaveSubdirs
/*
COMMON_SUBDIRS = libtex Xtex Mftobdf Dviselect Dviconcat Texx Iptex
*/
COMMON_SUBDIRS = libtex Xtex Mftobdf Dviselect Dviconcat
#include "./Imake.Config"
#ifdef SunArchitecture
SUBDIRS = $(COMMON_SUBDIRS) Texsun
#endif
#ifdef unixpc
SUBDIRS = libtex Tex3b1 Dviselect
#endif
#if !defined(SunArchitecture) && !defined(unixpc)
SUBDIRS = $(COMMON_SUBDIRS)
#endif
TARSUBDIRS = libtex Doc Xtex Mftobdf Dviselect Dviconcat \
Texx Iptex Fonts Texsun Tex3b1
#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
MakeSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
FILES = Imakefile Imake.Config fontdesc-example README \
Imake.cpp Imake.m4 NoImake
VERSION =2.19
FTP =/cs/ftp/distribs/SeeTeX
tar:
for file in $(TARSUBDIRS);\
do\
(cd $$file ; $(MAKE) Makefile ) ;\
done
cd ..;\
rm -f SeeTeX.tar ; \
tar cf SeeTeX.tar SeeTeX/Imakefile ; \
for file in $(FILES);\
do\
tar rf SeeTeX.tar SeeTeX/$$file; \
done; \
cd SeeTeX; \
for file in $(TARSUBDIRS);\
do\
(cd $$file ; $(MAKE) TARFILE=SeeTeX.tar PRODUCT=SeeTeX tar);\
done ; \
cd .. ; \
mv SeeTeX.tar /usr/tmp ; \
rm -rf /usr/tmp/SeeTeX ; \
(cd /usr/tmp;\
tar xvf SeeTeX.tar;\
rm -f SeeTeX.tar $(FTP)/SeeTeX*.tar*;\
echo "Run tar cf $(FTP)/SeeTeX-$(VERSION).tar SeeTeX " ;\
tar cf $(FTP)/SeeTeX-$(VERSION).tar SeeTeX ;\
compress $(FTP)/SeeTeX-$(VERSION).tar ;\
rm -rf SeeTeX ;\
)
(cd Xtex; \
$(MAKE) xtex-$(VERSION).tar.Z;\
mv xtex-$(VERSION).tar.Z $(FTP)/SeeTeX)
libtex/lib.a:
cd libtex; $(MAKE)
xtex: libtex/lib.a
cd Xtex; $(MAKE)
mftobdf XeT/mftobdf:
cd Mftobdf ; $(MAKE) mftobdf
dviselect Dviselect/dviselect:
cd Dviselect ; $(MAKE) dviselect
texsun Texsun/texsun:
cd Texsun ; $(MAKE) texsun
texx Texx/texx:
cd Texx ; $(MAKE) texx
iptex Iptex/iptex:
cd Iptex ; $(MAKE) iptex
|