what I mean, is the messages during build and install are fixed
This commit is contained in:
parent
044af214e5
commit
ef2794dc23
2 changed files with 24 additions and 8 deletions
16
Makefile.am
16
Makefile.am
|
@ -13,17 +13,25 @@ DISTCLEANFILES = ccdv
|
|||
EXTRA_DIST = ccdv.c CREDITS INSTNOTES RELNOTES
|
||||
|
||||
all-local:
|
||||
echo "Compilation complete."
|
||||
echo "Run 'make install' (or 'gmake install' on some systems) to install NeoStats."
|
||||
echo "If you require support, see the README file."
|
||||
if test ! -f .message; then \
|
||||
echo ""; \
|
||||
$(top_srcdir)/autotools/shtool echo -e "%BCompilation complete.%b"; \
|
||||
echo ""; \
|
||||
echo "Run 'make install' (or 'gmake install' on some systems) to install NeoStats."; \
|
||||
echo "If you require support, see the README file."; \
|
||||
touch .message;\
|
||||
fi;
|
||||
|
||||
install-exec-hook:
|
||||
$(CCDV) $(dist_binSCRIPT_INSTALL) "neostats" "@prefix@/neostats";
|
||||
test -z "@prefix@/logs" || $(mkdir_p) "@prefix@/logs";
|
||||
|
||||
install-data-hook:
|
||||
echo "Installation complete."
|
||||
echo ""
|
||||
$(top_srcdir)/autotools/shtool echo -e "%BInstallation complete.%b"
|
||||
echo ""
|
||||
echo "Change directory to '@prefix@' then run './neostats'"
|
||||
echo "If you require support, see the README file."
|
||||
rm -f .message
|
||||
|
||||
include $(top_srcdir)/autotools/rules.mk
|
||||
|
|
16
Makefile.in
16
Makefile.in
|
@ -696,18 +696,26 @@ uninstall-info: uninstall-info-recursive
|
|||
|
||||
|
||||
all-local:
|
||||
echo "Compilation complete."
|
||||
echo "Run 'make install' (or 'gmake install' on some systems) to install NeoStats."
|
||||
echo "If you require support, see the README file."
|
||||
if test ! -f .message; then \
|
||||
echo ""; \
|
||||
$(top_srcdir)/autotools/shtool echo -e "%BCompilation complete.%b"; \
|
||||
echo ""; \
|
||||
echo "Run 'make install' (or 'gmake install' on some systems) to install NeoStats."; \
|
||||
echo "If you require support, see the README file."; \
|
||||
touch .message;\
|
||||
fi;
|
||||
|
||||
install-exec-hook:
|
||||
$(CCDV) $(dist_binSCRIPT_INSTALL) "neostats" "@prefix@/neostats";
|
||||
test -z "@prefix@/logs" || $(mkdir_p) "@prefix@/logs";
|
||||
|
||||
install-data-hook:
|
||||
echo "Installation complete."
|
||||
echo ""
|
||||
$(top_srcdir)/autotools/shtool echo -e "%BInstallation complete.%b"
|
||||
echo ""
|
||||
echo "Change directory to '@prefix@' then run './neostats'"
|
||||
echo "If you require support, see the README file."
|
||||
rm -f .message
|
||||
|
||||
.c.o:
|
||||
@USECCDV@ @echo "Building $@"
|
||||
|
|
Reference in a new issue