Annotation of freem/Makefile.am, revision 1.7
1.1 snw 1: #
1.7 ! snw 2: # $Id: Makefile.am,v 1.6 2025/03/27 03:27:34 snw Exp $
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.4 snw 26: # $Log: Makefile.am,v $
1.7 ! snw 27: # Revision 1.6 2025/03/27 03:27:34 snw
! 28: # Install init scripts to share/freem/examples/init and fix regression in method dispatch
! 29: #
1.6 snw 30: # Revision 1.5 2025/03/24 04:21:39 snw
31: # Attempted installer fix for OS/2
32: #
1.5 snw 33: # Revision 1.4 2025/03/10 00:42:41 snw
34: # Fix broken build regression
35: #
1.4 snw 36: # Revision 1.3 2025/03/09 19:14:24 snw
37: # First phase of REUSE compliance and header reformat
38: #
1.3 snw 39: #
1.2 snw 40: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
41: # SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 42: #
43: ACLOCAL_AMFLAGS = -I m4
44: SUBDIRS = src doc
45: dist_doc_DATA = README.md doc/freem.1
46:
47: man1_MANS = doc/freem.1
48: info_TEXINFOS = doc/freem.texi
49:
50: systemgbldir = $(localstatedir)/freem/DEFAULT/SYSTEM/globals
51: systemrtndir = $(localstatedir)/freem/DEFAULT/SYSTEM/routines
52: usergbldir = $(localstatedir)/freem/DEFAULT/USER/globals
53: userrtndir = $(localstatedir)/freem/DEFAULT/USER/routines
54: journaldir = $(localstatedir)/freem/DEFAULT/journals
1.6 snw 55: systemddir = $(datadir)/freem/examples/init/systemd
56: systemdfedoradir = $(datadir)/freem/examples/init/systemd/fedora
57: freebsdrcdir = $(datadir)/freem/examples/init/freebsd_rc
58: solarisinitdir = $(datadir)/freem/examples/init/solaris
1.1 snw 59:
60: mlib = mlib/%DB.m mlib/%MAPPING.m mlib/%NETHTTP.m \
1.4 snw 61: mlib/%SYSINIT.m mlib/%TUIMENU.m mlib/%ZCOLUMNS.m \
1.1 snw 62: mlib/%ZFRMSAMP.m mlib/%ZFRMXEC.m mlib/%ZHELP.m mlib/%ZMAINT.m \
1.4 snw 63: mlib/%SYSWMERGE.m mlib/%ZREVQRY.m mlib/%ZROWS.m \
64: mlib/%SYSPOLY.m mlib/%ulstring.m mlib/%ulmath.m mlib/%ulcharacter.m \
1.1 snw 65: mlib/%SYSOOP.m mlib/%STRING.m mlib/%OBJECT.m mlib/%ED.m
66:
1.7 ! snw 67: EXTRA_DIST = sem.ver sysns_routine.txt sysns_global.txt userns_routine.txt userns_global.txt journals.txt $(mlib) \
! 68: scripts/systemd/system/freem.service scripts/systemd/fedora/freem.service scripts/freebsd-rc/freem scripts/solaris-init/freem
1.1 snw 69:
70: systemrtn_DATA = $(mlib) sysns_routine.txt
71: systemgbl_DATA = sysns_global.txt
72: userrtn_DATA = userns_routine.txt
73: usergbl_DATA = userns_global.txt
74: journal_DATA = journals.txt
1.6 snw 75: systemd_DATA = scripts/systemd/system/freem.service
76: systemdfedora_DATA = scripts/systemd/fedora/freem.service
77: freebsdrc_DATA = scripts/freebsd-rc/freem
78: solarisinit_DATA = scripts/solaris-init/freem
1.1 snw 79:
80: install-exec-hook:
1.5 snw 81: chmod 755 $(DESTDIR)$(bindir)/freem*
1.1 snw 82:
83: install-data-hook:
84: chmod -R 777 $(DESTDIR)$(journaldir) $(DESTDIR)$(systemgbldir) $(DESTDIR)$(usergbldir) $(DESTDIR)$(userrtndir)
85: chmod -R 755 $(DESTDIR)$(systemrtndir)
86: @echo
87: @echo "============================================================================================"
88: @echo
89: @echo " FreeM has been installed."
90: @echo
91: @echo " If this is the first time you have installed FreeM on this system, you"
92: @echo " must run \"fmadm configure\" before using FreeM."
93: @echo
94: @echo " If you had already installed a prior FreeM version on this system, you"
95: @echo " may need to run \"fmadm reconfigure\" in order to update your FreeM"
96: @echo " installation with the latest appropriate configuration data for this"
97: @echo " FreeM release."
98: @echo
99: @echo " You can access FreeM documentation by typing \"info freem\" in your"
100: @echo " system shell, typing \"?\" at the FreeM direct-mode prompt, or"
101: @echo " visiting https://freem.coherent-logic.com/docs/ in your web browser."
102: @echo
103: @echo " NOTE ON MULTI-ENVIRONMENT SUPPORT:"
104: @echo " If you are upgrading from a previous version of FreeM that lacked"
105: @echo " support for multiple, concurrent environments, you will need to"
106: @echo " move routines and globals into the proper directories."
107: @echo
108: @echo " See the FreeM Wiki for further details:"
109: @echo " https://freem-wiki.coherent-logic.com/index.php/Upgrading_to_Multi-Environment_Support"
110: @echo
111: @echo "============================================================================================"
112:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>