This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats/Makefile.am

37 lines
1.1 KiB
Text
Raw Permalink Normal View History

2004-06-01 09:22:43 +00:00
AUTOMAKE_OPTIONS = foreign
2005-07-07 13:22:50 +00:00
SUBDIRS = include lib src modules
2004-06-01 09:22:43 +00:00
ACLOCAL_AMFLAGS = -I autotools
2004-07-20 12:16:41 +00:00
AM_MAKEFLAGS = -s
2007-01-09 16:31:27 +00:00
DISTCHECK_CONFIGURE_FLAGS = --cache-file=../config.cache
dist_bin_SCRIPTS = makeconf
dist_data_DATA = neostats.motd
#docdir = @prefix@/doc
2008-03-05 09:42:39 +00:00
dist_doc_DATA = doc/README.dev ChangeLog.old doc/CODINGMODULES.txt RELNOTES CREDITS README
neodir = $(prefix)
neo_SCRIPTS = neostats
2005-11-19 09:01:40 +00:00
DISTCLEANFILES = autotools/ccdv
2008-03-05 09:22:44 +00:00
EXTRA_DIST = autotools/ccdv.c autotools/shtool INSTNOTES
all-local:
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-data-hook:
test -z "$(prefix)/logs" || $(CCDV) $(mkdir_p) "$(prefix)/logs";
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