File:  [Coherent Logic Development] / freem / autogen.sh
Revision 1.2: download - view: text, annotated - select for diffs
Sun Apr 13 04:36:30 2025 UTC (3 months, 2 weeks ago) by snw
Branches: MAIN
CVS tags: HEAD
Update autogen.sh script

    1: #!/usr/bin/env bash
    2: 
    3: #
    4: #   $Id: autogen.sh,v 1.2 2025/04/13 04:36:30 snw Exp $
    5: #    Generates necessary autotools files
    6: #
    7: #  
    8: #   Author: Serena Willis <snw@coherent-logic.com>
    9: #    Copyright (C) 2023, 2025 Coherent Logic Development LLC
   10: #
   11: #
   12: #   This file is part of FreeM.
   13: #
   14: #   FreeM is free software: you can redistribute it and/or modify
   15: #   it under the terms of the GNU Affero Public License as published by
   16: #   the Free Software Foundation, either version 3 of the License, or
   17: #   (at your option) any later version.
   18: #
   19: #   FreeM is distributed in the hope that it will be useful,
   20: #   but WITHOUT ANY WARRANTY; without even the implied warranty of
   21: #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   22: #   GNU Affero Public License for more details.
   23: #
   24: #   You should have received a copy of the GNU Affero Public License
   25: #   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
   26: #
   27: #   $Log: autogen.sh,v $
   28: #   Revision 1.2  2025/04/13 04:36:30  snw
   29: #   Update autogen.sh script
   30: #
   31: #   Revision 1.1  2025/04/05 00:47:30  snw
   32: #   Add autogen.sh script to ease development for repo users
   33: #
   34: #
   35: # SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
   36: # SPDX-License-Identifier: AGPL-3.0-or-later
   37: #
   38: 
   39: echo -n "autogen.sh:  preparing FreeM autotools-generated files... "
   40: autoreconf --install --force &> /dev/null
   41: if [[ $? == 0 ]]
   42: then
   43:     echo "[OK]"
   44: else
   45:     echo "[FAIL]"
   46: fi
   47: 
   48: 

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