84 lines
2.8 KiB
Makefile
84 lines
2.8 KiB
Makefile
# ******************************************************************************
|
|
# Makefile make-it-quick project
|
|
# ******************************************************************************
|
|
#
|
|
# File description:
|
|
#
|
|
# Top-level makefile for 'make-it-quick'
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
# ******************************************************************************
|
|
# This software is licensed under the GNU General Public License v3
|
|
# (C) 2017-2019, Christophe de Dinechin <christophe@dinechin.org>
|
|
# ******************************************************************************
|
|
# This file is part of make-it-quick
|
|
#
|
|
# make-it-quick is free software: you can r redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# make-it-quick 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with make-it-quick, in a file named COPYING.
|
|
# If not, see <https://www.gnu.org/licenses/>.
|
|
# ******************************************************************************
|
|
|
|
# Package description
|
|
PACKAGE_NAME=make-it-quick
|
|
PACKAGE_VERSION=0.2.7
|
|
PACKAGE_DESCRIPTION=A simple auto-configuring build system for C and C++ programs
|
|
PACKAGE_URL=http://github.com/c3d/make-it-quick
|
|
|
|
# Things to install
|
|
HDR_INSTALL= \
|
|
rules.mk \
|
|
config.mk \
|
|
$(wildcard config.*.mk) \
|
|
$(MIQ_OBJDIR)config.system-setup.mk
|
|
|
|
PREFIX.config=$(PREFIX.share)$(PACKAGE_DIR)config/
|
|
PACKAGE_INSTALL.lib=$(DESTDIR)$(PREFIX.config)
|
|
LIB_INSTALL=$(wildcard config/check*.c)
|
|
DOC_INSTALL= README.md AUTHORS NEWS
|
|
TESTS=example/
|
|
|
|
# Make sure we generate the config.system
|
|
MIQ_MAKEFILE_INSTALL=yes
|
|
|
|
MIQ=./
|
|
-include configured.mk
|
|
include $(MIQ)rules.mk
|
|
|
|
# Install the check*.c files as data
|
|
INSTALL.lib=$(INSTALL.data)
|
|
|
|
# Generation of the system setup file
|
|
SYSTEM_SETUP= \
|
|
$(SYSCONFIG:%=SYSCONFIG?="$(SYSCONFIG)") \
|
|
$(PREFIX:%=PREFIX?="$(PREFIX)") \
|
|
$(PREFIX.bin:%=PREFIX.bin?="$(PREFIX.bin)") \
|
|
$(PREFIX.sbin:%=PREFIX.sbin?="$(PREFIX.sbin)") \
|
|
$(PREFIX.hdr:%=PREFIX.hdr?="$(PREFIX.hdr)") \
|
|
$(PREFIX.share:%=PREFIX.share?="$(PREFIX.share)") \
|
|
$(PREFIX.lib:%=PREFIX.lib?="$(PREFIX.lib)") \
|
|
$(PREFIX.dll:%=PREFIX.dll?="$(PREFIX.dll)") \
|
|
$(PREFIX.libexec:%=PREFIX.libexec?="$(PREFIX.libexec)") \
|
|
$(PREFIX.man:%=PREFIX.man?="$(PREFIX.man)") \
|
|
$(PREFIX.doc:%=PREFIX.doc?="$(PREFIX.doc)") \
|
|
$(PREFIX.var:%=PREFIX.var?="$(PREFIX.var)") \
|
|
CONFIG_SOURCES="$(PREFIX.config)"
|
|
|
|
$(MIQ_OBJDIR)config.system-setup.mk:
|
|
$(PRINT_GENERATE) ( $(SYSTEM_SETUP:%=echo %;) true ) > $@
|