blob: b337ce1858f49f91519c3fd4627b8aaff63dde67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# tkpathsea.mk -- target for remaking kpathsea.
makeargs = $(MFLAGS) CC='$(CC)' CFLAGS='$(CFLAGS)' $(XMAKEARGS)
# This is wrong: the library doesn't depend on kpsewhich.c or
# acconfig.h. But what to do?
$(kpathsea): $(kpathsea_srcdir)/*.c $(kpathsea_srcdir)/*.h \
$(kpathsea_srcdir)/texmf.in $(top_srcdir)/../make/paths.mk
cd $(kpathsea_dir) && $(MAKE) $(makeargs)
$(kpathsea_dir)/paths.h: $(kpathsea_srcdir)/texmf.in
cd $(kpathsea_dir) && $(MAKE) $(makeargs)
# End of tkpathsea.mk.
|