|
|
| version 1.1.1.1, 2025/01/19 02:04:04 | version 1.8, 2025/04/02 02:22:49 |
|---|---|
| Line 1 | Line 1 |
| # | # |
| # * | # $Id$ |
| # * * | |
| # * * | |
| # *************** | |
| # * * * * | |
| # * MUMPS * | |
| # * * * * | |
| # *************** | |
| # * * | |
| # * * | |
| # * | |
| # | |
| # Makefile.am (src) | |
| # automake rules for main body of FreeM source code | # automake rules for main body of FreeM source code |
| # | # |
| # | # |
| # Author: John P. Willis <jpw@coherent-logic.com> | # Author: Serena Willis <jpw@coherent-logic.com> |
| # Copyright (C) 1998 MUG Deutschland | # Copyright (C) 1998 MUG Deutschland |
| # Copyright (C) 2020 Coherent Logic Development LLC | # Copyright (C) 2020, 2025 Coherent Logic Development LLC |
| # | # |
| # | # |
| # This file is part of FreeM. | # This file is part of FreeM. |
| Line 35 | Line 23 |
| # You should have received a copy of the GNU Affero Public License | # You should have received a copy of the GNU Affero Public License |
| # along with FreeM. If not, see <https://www.gnu.org/licenses/>. | # along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
| # | # |
| # $Log$ | |
| # Revision 1.8 2025/04/02 02:22:49 snw | |
| # Remove -Wformat-truncation | |
| # | |
| # Revision 1.7 2025/03/31 16:33:56 snw | |
| # Work on fmadm edit global | |
| # | |
| # Revision 1.6 2025/03/30 01:36:58 snw | |
| # Make it easier to bring back fma_gedit, fix double-free in global handler, limit $CHAR to 7-bit ASCII | |
| # | |
| # Revision 1.5 2025/03/09 19:14:24 snw | |
| # First phase of REUSE compliance and header reformat | |
| # | |
| # | |
| # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| # | # |
| AM_CFLAGS = -fsigned-char -Wno-return-mismatch -Wno-incompatible-pointer-types #-fsanitize=address #-fno-stack-protector | AM_CFLAGS = -fsigned-char |
| AM_CPPFLAGS = -DHACK_NOXLATE -DSYSCONFDIR=\"${sysconfdir}\" -DPREFIX=\"${prefix}\" -DDATADIR=\"${datadir}\" -DLOCALSTATEDIR=\"${localstatedir}\" -DHOST=\"${host_triplet}\" | AM_CPPFLAGS = -DHACK_NOXLATE -DSYSCONFDIR=\"${sysconfdir}\" -DPREFIX=\"${prefix}\" -DDATADIR=\"${datadir}\" -DLOCALSTATEDIR=\"${localstatedir}\" -DHOST=\"${host_triplet}\" |
| freem_headers = config.h errmsg.h events.h fmadm.h fma_globals.h fma_jobs.h \ | freem_headers = config.h errmsg.h events.h fmadm.h fma_globals.h fma_jobs.h \ |
| Line 63 freem_common = iniconf.c sighnd.c init.c | Line 67 freem_common = iniconf.c sighnd.c init.c |
| mcommand.c routine.c fs.c $(freem_commands) $(freem_headers) | mcommand.c routine.c fs.c $(freem_commands) $(freem_headers) |
| fmadm_common = fmadm.c fma_locks.c fma_journals.c fma_routines.c fma_globals.c fma_jobs.c fma_gedit.c | fmadm_common = fmadm.c fma_locks.c fma_journals.c fma_routines.c fma_globals.c fma_jobs.c fma_gedit.c |
| #fmadm_common = fmadm.c fma_locks.c fma_journals.c fma_routines.c fma_globals.c fma_jobs.c | |
| bin_PROGRAMS = freem fmadm | bin_PROGRAMS = freem fmadm |
| lib_LTLIBRARIES = libfreem.la | lib_LTLIBRARIES = libfreem.la |
| Line 83 fmadm_CFLAGS = $(AM_CFLAGS) $(FREEM_CFLA | Line 88 fmadm_CFLAGS = $(AM_CFLAGS) $(FREEM_CFLA |
| # freem_LDFLAGS = @X_LIBS@ | # freem_LDFLAGS = @X_LIBS@ |
| freem_LDADD = $(FREEM_LIBS) @CURSES_LIB@ | freem_LDADD = $(FREEM_LIBS) |
| fmadm_LDADD = $(FREEM_LIBS) @CURSES_LIB@ | |
| #fmadm_LDADD = $(FREEM_LIBS) @CURSES_LIB@ | |
| fmadm_LDADD = $(FREEM_LIBS) | |