From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id 2C67F3858D20 for ; Sat, 5 Feb 2022 05:46:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2C67F3858D20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id BB4BC342F95; Sat, 5 Feb 2022 05:46:56 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH 0/5] start converting libgloss to non-recursive automake Date: Sat, 5 Feb 2022 00:46:51 -0500 Message-Id: <20220205054656.11443-1-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.5 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Feb 2022 05:46:58 -0000 This converts the top-level to automake, and then cuts a few subdirs over to non-recursive automake. I didn't cut all the subdirs over to automake, but should be easy to convert more over. Mike Frysinger (5): libgloss: convert top level to automake libgloss: merge doc into top-level Makefile libgloss: merge libgloss into top-level Makefile libgloss: merge iq2000 into top-level Makefile libgloss: merge bfin into top-level Makefile libgloss/Makefile.am | 70 ++ libgloss/Makefile.in | 1784 +++++++++++++++++++++++++++++--- libgloss/aclocal.m4 | 20 + libgloss/bfin/Makefile.in | 207 ---- libgloss/bfin/Makefile.inc | 71 ++ libgloss/config/default.mh | 3 + libgloss/configure | 258 ++++- libgloss/configure.ac | 26 +- libgloss/doc/Makefile.in | 175 ---- libgloss/doc/Makefile.inc | 1 + libgloss/iq2000/Makefile.in | 149 --- libgloss/iq2000/Makefile.inc | 11 + libgloss/libnosys/Makefile.in | 115 -- libgloss/libnosys/Makefile.inc | 27 + 14 files changed, 2074 insertions(+), 843 deletions(-) create mode 100644 libgloss/Makefile.am delete mode 100644 libgloss/bfin/Makefile.in create mode 100644 libgloss/bfin/Makefile.inc delete mode 100644 libgloss/doc/Makefile.in create mode 100644 libgloss/doc/Makefile.inc delete mode 100644 libgloss/iq2000/Makefile.in create mode 100644 libgloss/iq2000/Makefile.inc delete mode 100644 libgloss/libnosys/Makefile.in create mode 100644 libgloss/libnosys/Makefile.inc -- 2.34.1