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 (7 weeks, 6 days ago) by snw
Branches: MAIN
CVS tags: HEAD
Update autogen.sh script

#!/usr/bin/env bash

#
#   $Id: autogen.sh,v 1.2 2025/04/13 04:36:30 snw Exp $
#    Generates necessary autotools files
#
#  
#   Author: Serena Willis <snw@coherent-logic.com>
#    Copyright (C) 2023, 2025 Coherent Logic Development LLC
#
#
#   This file is part of FreeM.
#
#   FreeM is free software: you can redistribute it and/or modify
#   it under the terms of the GNU Affero Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   FreeM is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU Affero Public License for more details.
#
#   You should have received a copy of the GNU Affero Public License
#   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
#
#   $Log: autogen.sh,v $
#   Revision 1.2  2025/04/13 04:36:30  snw
#   Update autogen.sh script
#
#   Revision 1.1  2025/04/05 00:47:30  snw
#   Add autogen.sh script to ease development for repo users
#
#
# SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
# SPDX-License-Identifier: AGPL-3.0-or-later
#

echo -n "autogen.sh:  preparing FreeM autotools-generated files... "
autoreconf --install --force &> /dev/null
if [[ $? == 0 ]]
then
    echo "[OK]"
else
    echo "[FAIL]"
fi



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