crosstool-ng/Makefile.am

53 lines
1.4 KiB
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
## vim: set noet :
include verbatim-data.mk
SUBDIRS = kconfig
bin_SCRIPTS = ct-ng
CLEANFILES = $(bin_SCRIPTS)
EXTRA_DIST = ct-ng.in bootstrap docs/ct-ng.1.in
man1_MANS = docs/ct-ng.1
# paths.sh generated by configure
nobase_dist_pkgdata_DATA = $(verbatim_data) paths.sh
USER_MANUAL_FILES = \
docs/manual/1_Introduction.md \
docs/manual/2_Installation.md \
docs/manual/3_Configuration.md \
docs/manual/4_Building.md \
docs/manual/5_Toolchain_Usage.md \
docs/manual/6_Toolchain_Types.md \
docs/manual/7_Contributing.md \
docs/manual/8_Internals.md \
docs/manual/9_Toolchain_Construction.md \
docs/manual/A_Credits.md \
docs/manual/B_Known_issues.md \
docs/manual/C_Setup_OS.md \
docs/manual/D_Tutorials_features.md
if INSTALL_USER_MANUAL
doc_DATA = $(USER_MANUAL_FILES)
else
doc_DATA = docs/MANUAL_ONLINE
endif
do_subst = ( @SED@ \
-e 's,[@]docdir[@],$(docdir),g' \
-e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
-e 's,[@]pkglibexecdir[@],$(pkglibexecdir),g' \
-e 's,[@]progname[@],'`echo ct-ng | sed '$(transform)'`',g' \
| $(SHELL) config.status --file=- )
ct-ng: ct-ng.in Makefile
$(AM_V_GEN)$(do_subst) < $< >$@-t && chmod a-w,a+x $@-t && mv -f $@-t $@
docs/ct-ng.1: docs/ct-ng.1.in
$(AM_V_GEN)$(MKDIR_P) docs && $(do_subst) < $< >$@-t && mv -f $@-t $@
dist-hook: maintainer/download-docs.sh
$< $(top_distdir) $(USER_MANUAL_FILES)