mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 21:33:08 +00:00
9dc94f3662
... and update .gitignore. Survives 'make distcheck'. Signed-off-by: Alexey Neyman <stilor@att.net>
23 lines
549 B
Makefile
23 lines
549 B
Makefile
## 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
|
|
|
|
nobase_dist_pkgdata_DATA = $(verbatim_data)
|
|
|
|
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 $@
|