# Generated automatically from Makefile.os2 by configure.
# Top-level Makefile for kpathsea-using programs.

include Makeconfig.os2

# Package subdirectories, the library, and all subdirectories.
programs = dvipsk web2c xdvik
kpathsea_dir = kpathsea
all_dirs = $(programs)

# The following make definitions (down to `end of installation
# directories') are repeated in several Makefiles, because different
# installations like to change them at different levels. If you edit the
# top-level Makefile, the changes should propagate, however.
# 
# The following define installation directories. The default paths are
# defined in kpathsea/paths.h, which is built from kpathsea/paths.h.in.
# See kpathsea/INSTALL for a description of how the various path-related
# files are used and created.

# Generic installation directories.
prefix = /usr/local
exec_prefix = ${prefix}
bindir = $(exec_prefix)/bin
scriptdir = $(bindir)
libdir = $(exec_prefix)/lib
datadir = $(prefix)/lib
infodir = $(prefix)/info
includedir = $(prefix)/include
manext = 1
mandir = $(prefix)/man/man$(manext)

# TeX & MF-specific directories. Not all of the following are relevant
# for all programs, but it seems cleaner to collect everything in one place.

# The default paths are now in kpathsea/Makefile.in. Passing all the
# paths to sub-makes can make the arg list too long on system V.

# The root of the tree.
texmf_prefix = $(datadir)/TeX+MF

# TeX and MF source files.
texinputdir = $(texmf_prefix)/tex
mfinputdir = $(texmf_prefix)/mf

# The top-level font directory.
fontdir = $(texmf_prefix)/fonts

# Where memory dumps are installed.
fmtdir = $(texmf_prefix)/formats
basedir = $(texmf_prefix)/bases

# Pool files.
texpooldir = $(texmf_prefix)/pool
mfpooldir = $(texmf_prefix)/pool

# The PostScript TFM and VF files get installed in subdirectories of
# this directory, named for the typeface families of these directories.
psfontdir = $(fontdir)/adobe

# Where the configuration files get installed.
dvips_prefix = $(texmf_prefix)/dvips
configdir = $(dvips_prefix)

# Where the PostScript prologues go.
headerdir = $(configdir)

# Where dvips' TeX macro files get installed.
psmacrodir = $(texinputdir)/dvips

# If a font can't be found close enough to its stated size, we look for
# each of these sizes in the order given.  This colon-separated list is
# overridden by the envvar TEXSIZES, and by a program-specific variable
# (e.g., XDVISIZES), and perhaps by a config file (e.g., in dvips).
default_texsizes = 300:600

# End of installation directory definitions.

SHELL = /bin/sh
srcdir = .
VPATH = .

# I pass CFLAGS but not all the other Make compiler-related.
# Unorthogonal, but many people like to change CFLAGS, and few people
# like to change the others. It's impossible to pass them all, because
# system V runs out of arg space.
CFLAGS = -g $(XCFLAGS)

# It's too bad we have to pass all these down, but I see no alternative,
# if we are to propagate changes at the top level.
makeargs = $(MFLAGS) SHELL='$(SHELL)' \
  prefix=$(prefix) exec_prefix=$(exec_prefix) \
  bindir=$(bindir) scriptdir=$(scriptdir) libdir=$(libdir) \
  datadir=$(datadir) infodir=$(infodir) includedir=$(includedir) \
  manext=$(manext) mandir=$(mandir) \
  texmf_prefix=$(texmf_prefix) \
  texinputdir=$(texinputdir) mfinputdir=$(mfinputdir) \
  fontdir=$(fontdir) \
  fmtdir=$(fmtdir) basedir=$(basedir) \
  texpooldir=$(texpooldir) mfpooldir=$(mfpooldir) \
  psfontdir=$(psfontdir) \
  dvips_prefix=$(dvips_prefix) configdir=$(configdir) \
  headerdir=$(headerdir) psmacrodir=$(texinputdir)/dvips \
  default_texsizes='$(default_texsizes)' \
  $(MAKEARGS)


default: all

# Make the library before the programs.
all: do-kpathsea
	for d in $(programs); do \
	  if test -d $$d; then (cd $$d; $(MAKE) $(makeargs) $@); \
	  else true; fi; done

# Only (un)install in the programs.
install install-exec install-data \
uninstall uninstall-exec uninstall-data:
	for d in $(programs); do \
	  if test -d $$d; then (cd $$d; $(MAKE) $(makeargs) $@); \
	  else true; fi; done

# Do other standard targets everywhere.
mostlyclean clean distclean realclean extraclean configclean \
TAGS info dvi check depend::
	for d in $(all_dirs); do \
	  if test -d $$d; then (cd $$d; $(MAKE) $(makeargs) $@); \
	  else true; fi; done

distclean realclean::
	-rm -f Makefile

# Unconditionally remake the library, since we don't want to write out
# the dependencies here.
do-kpathsea:
	true

# Targets that only apply to web2c.
triptrap run-triptrap clean-triptrap \
run-trip clean-trip \
run-trap clean-trap \
c-sources programs \
TeX MF BibTeX \
formats fmts bases \
manpages install-manpages:
	cd web2c; $(MAKE) $(makeargs) $@

Makefile: $(srcdir)/Makefile.os2 config.status
	$(SH) config.status
