diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-14 12:38:56 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-14 12:38:56 +0000 |
commit | 45bedb3177b9154e6f33b56b7dfb74f9eac5b558 (patch) | |
tree | 7567d16968338bd7617020de9cbb2d71474b86ab /Build/source/texk/web2c/am | |
parent | f1d3ba0a3734449d269ee61143f02c6956b88ced (diff) |
build system fixes: mft.test, parallel make problems
git-svn-id: svn://tug.org/texlive/trunk@13085 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/am')
-rw-r--r-- | Build/source/texk/web2c/am/texmf.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/am/texmf.am b/Build/source/texk/web2c/am/texmf.am index 5798ec28c5d..fe256a3e7ec 100644 --- a/Build/source/texk/web2c/am/texmf.am +++ b/Build/source/texk/web2c/am/texmf.am @@ -27,8 +27,11 @@ tex_LDADD = $(LDADD) $(ipc_socketlibs) # TeX C sources tex_c_h = texini.c tex0.c tex1.c tex2.c texcoerce.h texd.h nodist_tex_SOURCES = $(tex_c_h) tex-pool.c texextra.c -$(tex_c_h): tex-web2c +# We must create texd.h before building the tex_OBJECTS. +$(tex_OBJECTS): texd.h + +$(tex_c_h): tex-web2c tex-web2c: tex.p $(web2c_texmf) $(web2c) tex : $(synctex_convert_tex) @@ -122,6 +125,9 @@ mf_c_h = mfini.c mf0.c mf1.c mfcoerce.h mfd.h nodist_libmf_a_SOURCES = $(mf_c_h) mf-pool.c libmf_a_CPPFLAGS = -DMETA_FONT +# We must create mfd.h before building the libmf_a_OBJECTS. +$(libmf_a_OBJECTS): mfd.h + $(mf_c_h): mf-web2c mf-web2c: mf.p $(web2c_texmf) web2c/cvtmf1.sed web2c/cvtmf2.sed $(web2c) mf |