diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-21 23:34:58 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | dbe3877285549d1cdc549826673cdf8f07cf154c (patch) | |
tree | 0f0c188389c9dd60da7307be452a5faf59562e35 /Makefile.am | |
parent | d9d4d090265b56dc158b9ffa7a875d0a68f9c57f (diff) | |
download | crosstool-ng-dbe3877285549d1cdc549826673cdf8f07cf154c.tar.gz crosstool-ng-dbe3877285549d1cdc549826673cdf8f07cf154c.tar.bz2 crosstool-ng-dbe3877285549d1cdc549826673cdf8f07cf154c.zip |
Install ct-ng
Also, move kconfig.mk into the main driver - we'd want kconfig to be a sub-package
so there's no sense in writing the installation framework for the ct-ng-specific
fragment in an otherwise independent directory.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 8e25898f..37996f85 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,3 +2,17 @@ ## vim: set noet : SUBDIRS = kconfig + +bin_SCRIPTS = ct-ng +CLEANFILES = $(bin_SCRIPTS) +EXTRA_DIST = ct-ng.in bootstrap + +do_subst = ( @SED@ \ + -e 's,[@]bindir[@],$(bindir),g' \ + -e 's,[@]libdir[@],$(libdir),g' \ + -e 's,[@]docdir[@],$(docdir),g' \ + -e 's,[@]mandir[@],$(mandir),g' \ + | $(SHELL) config.status --file=- ) + +ct-ng: ct-ng.in + $(AM_V_GEN)$(do_subst) < $< >$@-t && chmod a-w,a+x $@-t && mv $@-t $@ |