36 lines
805 B
Makefile
36 lines
805 B
Makefile
DISTCLEANFILES=\
|
|
config.status \
|
|
config.log \
|
|
config.cache \
|
|
stamp-h \
|
|
Makefile \
|
|
test-groff \
|
|
src/include/config.h \
|
|
site.exp \
|
|
site.bak \
|
|
groff.sum \
|
|
groff.log
|
|
CLEANADD=Makefile.cfg conftest*
|
|
|
|
distfiles: configure
|
|
|
|
$(scrdir)/configure: configure.ac aclocal.m4
|
|
cd $(srcdir) && autoconf
|
|
|
|
config.status: configure
|
|
$(SHELL) config.status --recheck
|
|
|
|
# autoheader might not change config.hin, so touch a stamp file.
|
|
$(srcdir)/config.hin: stamp-h.in
|
|
$(srcdir)/stamp-h.in: configure.ac aclocal.m4
|
|
cd $(srcdir) && autoheader
|
|
echo timestamp > $(srcdir)/stamp-h.in
|
|
|
|
config.h: stamp-h
|
|
stamp-h: config.hin config.status
|
|
$(SHELL) config.status
|
|
|
|
# Always create the site-font directory as a guide to the user.
|
|
install_data:
|
|
-test -d $(localfontdir) || $(mkinstalldirs) $(localfontdir)
|