Annotation of freem/Makefile.am, revision 1.3
1.1 snw 1: #
1.3 ! snw 2: # $Id$
1.1 snw 3: # automake rules for freem
4: #
5: #
1.2 snw 6: # Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: # Copyright (C) 1998 MUG Deutschland
1.2 snw 8: # Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1 snw 9: #
10: #
11: # This file is part of FreeM.
12: #
13: # FreeM is free software: you can redistribute it and/or modify
14: # it under the terms of the GNU Affero Public License as published by
15: # the Free Software Foundation, either version 3 of the License, or
16: # (at your option) any later version.
17: #
18: # FreeM is distributed in the hope that it will be useful,
19: # but WITHOUT ANY WARRANTY; without even the implied warranty of
20: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: # GNU Affero Public License for more details.
22: #
23: # You should have received a copy of the GNU Affero Public License
24: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: #
1.3 ! snw 26: # $Log$
! 27: #
1.2 snw 28: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
29: # SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 30: #
31: ACLOCAL_AMFLAGS = -I m4
32: SUBDIRS = src doc
33: dist_doc_DATA = README.md doc/freem.1
34:
35: man1_MANS = doc/freem.1
36: info_TEXINFOS = doc/freem.texi
37:
38: systemgbldir = $(localstatedir)/freem/DEFAULT/SYSTEM/globals
39: systemrtndir = $(localstatedir)/freem/DEFAULT/SYSTEM/routines
40: usergbldir = $(localstatedir)/freem/DEFAULT/USER/globals
41: userrtndir = $(localstatedir)/freem/DEFAULT/USER/routines
42: journaldir = $(localstatedir)/freem/DEFAULT/journals
43:
44: mlib = mlib/%DB.m mlib/%MAPPING.m mlib/%NETHTTP.m \
45: mlib/%SYSINIT.m mlib/%TUIMENU.m mlib/%ZCOLUMNS.m mlib/%ZEVENT.m \
46: mlib/%ZFRMSAMP.m mlib/%ZFRMXEC.m mlib/%ZHELP.m mlib/%ZMAINT.m \
47: mlib/%SYSWMERGE.m mlib/%ZREVQRY.m mlib/%ZROWS.m mlib/%zscreen.m \
48: mlib/%SYSPOLY.m mlib/%ZWRIMP.m mlib/%ulstring.m mlib/%ulmath.m mlib/%ulcharacter.m \
49: mlib/%SYSOOP.m mlib/%STRING.m mlib/%OBJECT.m mlib/%ED.m
50:
51: EXTRA_DIST = sem.ver sysns_routine.txt sysns_global.txt userns_routine.txt userns_global.txt journals.txt $(mlib)
52:
53: systemrtn_DATA = $(mlib) sysns_routine.txt
54: systemgbl_DATA = sysns_global.txt
55: userrtn_DATA = userns_routine.txt
56: usergbl_DATA = userns_global.txt
57: journal_DATA = journals.txt
58:
59: install-exec-hook:
60: chmod 755 $(DESTDIR)$(bindir)/freem
61:
62: install-data-hook:
63: chmod -R 777 $(DESTDIR)$(journaldir) $(DESTDIR)$(systemgbldir) $(DESTDIR)$(usergbldir) $(DESTDIR)$(userrtndir)
64: chmod -R 755 $(DESTDIR)$(systemrtndir)
65: @echo
66: @echo "============================================================================================"
67: @echo
68: @echo " FreeM has been installed."
69: @echo
70: @echo " If this is the first time you have installed FreeM on this system, you"
71: @echo " must run \"fmadm configure\" before using FreeM."
72: @echo
73: @echo " If you had already installed a prior FreeM version on this system, you"
74: @echo " may need to run \"fmadm reconfigure\" in order to update your FreeM"
75: @echo " installation with the latest appropriate configuration data for this"
76: @echo " FreeM release."
77: @echo
78: @echo " You can access FreeM documentation by typing \"info freem\" in your"
79: @echo " system shell, typing \"?\" at the FreeM direct-mode prompt, or"
80: @echo " visiting https://freem.coherent-logic.com/docs/ in your web browser."
81: @echo
82: @echo " NOTE ON MULTI-ENVIRONMENT SUPPORT:"
83: @echo " If you are upgrading from a previous version of FreeM that lacked"
84: @echo " support for multiple, concurrent environments, you will need to"
85: @echo " move routines and globals into the proper directories."
86: @echo
87: @echo " See the FreeM Wiki for further details:"
88: @echo " https://freem-wiki.coherent-logic.com/index.php/Upgrading_to_Multi-Environment_Support"
89: @echo
90: @echo "============================================================================================"
91:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>