Annotation of plm/Makefile, revision 1.3

1.1       snw         1: #
1.3     ! snw         2: # $Id: Makefile,v 1.2 2025/04/27 18:53:36 snw Exp $
1.1       snw         3: #  plm makefile
                      4: #
                      5: #  Copyright (C) 2025 Serena Willis
                      6: #
1.2       snw         7: #   $Log: Makefile,v $
1.3     ! snw         8: #   Revision 1.2  2025/04/27 18:53:36  snw
        !             9: #   Add pl man page
        !            10: #
1.2       snw        11: #   Revision 1.1  2025/04/27 17:14:32  snw
                     12: #   Add some files
                     13: #
1.1       snw        14: #
                     15: # SPDX-FileCopyrightText: (C) 2025 Serena Willis
                     16: # SPDX-License-Identifier: AGPL-3.0-or-later
                     17: #
                     18: 
1.3     ! snw        19: default:
        !            20:        @echo "specify install, uninstall, or lint"
        !            21: 
        !            22: install:
        !            23:        install -o root -g root pl genpl /usr/local/bin/
        !            24:        cp pl.1 /usr/share/man/man1/
        !            25:        gzip /usr/share/man/man1/pl.1
        !            26:        mandb -q
        !            27: 
        !            28: uninstall:
        !            29:        rm -f /usr/local/bin/pl
        !            30:        rm -f /usr/local/bin/genpl
        !            31:        rm -f /usr/share/man/man1/pl.1.gz
        !            32:        mandb -q
        !            33: 
1.1       snw        34: lint:
1.3     ! snw        35:        rm -rf LICENSES
1.2       snw        36:        mkdir -p LICENSES
1.1       snw        37:        reuse download --all
                     38:        reuse lint
                     39:        rm -rf LICENSES
1.3     ! snw        40: 
        !            41: .PHONY: default install uninstall lint

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>