1: #
2: # $Id: Makefile,v 1.12 2025/04/14 13:06:46 snw Exp $
3: # Makefile for dev scripts
4: #
5: #
6: # Author: Serena Willis <snw@coherent-logic.com>
7: # Copyright (C) 2025 Coherent Logic Development LLC
8: #
9: #
10: # This file is part of FreeM.
11: #
12: # FreeM is free software: you can redistribute it and/or modify
13: # it under the terms of the GNU Affero Public License as published by
14: # the Free Software Foundation, either version 3 of the License, or
15: # (at your option) any later version.
16: #
17: # FreeM is distributed in the hope that it will be useful,
18: # but WITHOUT ANY WARRANTY; without even the implied warranty of
19: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20: # GNU Affero Public License for more details.
21: #
22: # You should have received a copy of the GNU Affero Public License
23: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
24: #
25: # $Log: Makefile,v $
26: # Revision 1.12 2025/04/14 13:06:46 snw
27: # Add OS/2 RPM build script to fmd
28: #
29: # Revision 1.11 2025/04/10 18:18:12 snw
30: # Add fmd update
31: #
32: # Revision 1.10 2025/04/10 02:17:49 snw
33: # Add fmd-todo
34: #
35: # Revision 1.9 2025/04/09 19:52:02 snw
36: # Eliminate as many warnings as possible while building with -Wall
37: #
38: # Revision 1.8 2025/04/09 15:47:36 snw
39: # Add fmd lint command
40: #
41: # Revision 1.7 2025/04/07 21:40:06 snw
42: # Add fmd-pkg-rpm to fmd makefile
43: #
44: # Revision 1.6 2025/04/07 04:00:07 snw
45: # Add fmd-pkg-pkgadd to fmd Makefile
46: #
47: # Revision 1.5 2025/04/06 05:01:21 snw
48: # Initial working implementation of fmd package for dpkg
49: #
50: # Revision 1.4 2025/04/06 03:38:05 snw
51: # Prepare for adding packaging functionality to fmd
52: #
53: # Revision 1.3 2025/04/05 03:18:41 snw
54: # Add fmd docupdate command to dev scripts
55: #
56: # Revision 1.2 2025/04/04 18:30:03 snw
57: # Add fmd versions command to list all versions
58: #
59: # Revision 1.1 2025/04/04 18:00:01 snw
60: # *** empty log message ***
61: #
62: #
63: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
64: # SPDX-License-Identifier: AGPL-3.0-or-later
65: #
66:
67: pgms = fmd fmd-commit fmd-setversion fmd-changelog fmd-log fmd-versions fmd-docupdate _fmd_common.bash fmd-package fmd-pkg-dpkg fmd-pkg-pkgadd fmd-pkg-rpm fmd-pkg-os2rpm fmd-lint fmd-todo fmd-update
68:
69: install:
70: cp $(pgms) /usr/local/bin
71: chmod 755 /usr/local/bin/fmd-*
72:
73: .PHONY: install
74:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>