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
|
################################################################################
#
# Makefile : Top-Level Makefile for programs using kpathsea
# Author : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <02/11/15 13:52:30 popineau>
#
################################################################################
root_srcdir=..
INCLUDE=$(INCLUDE);$(root_srcdir)\texk
# Package subdirectories, the library, and all subdirectories.
# Make the library before the programs.
subdirs= kpathsea \
web2c \
contrib \
bibtex8 \
chktex \
cjkutils \
devnag \
detex \
dtl \
dvi2tty \
dvidvi \
dviljk \
dvipdfm \
dvipsk \
gsftopk \
ispell \
lacheck \
ltx2rtf \
makeindexk \
musixflx \
odvipsk \
owindvi \
ps2pkm \
seetexk \
tetex \
tex4htk \
texlive \
ttf2pfb \
ttf2pt1 \
ttf2pk \
ttfdump \
windvi
# tth oxdvik xdvik
# Not everything from common.mk is relevant to this top-level
# Makefile, but most of it is, and it doesn't seem worth separating the
# compilation-specific stuff.
!include <msvc/common.mak>
!include <msvc/subdirs.mak>
# Targets that only apply to web2c.
triptrap trip trap mptrap \
formats fmts bases mems \
install-formats install-fmts install-bases install-mems \
install-links c-sources: do-kpathsea
-@echo off & echo Entering web2c for $@
-@pushd web2c & $(make) $@ & popd
!include <msvc/config.mak>
!include <msvc/clean.mak>
# Local Variables:
# mode: Makefile
# End:
|