mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
d632622b5a
* src/verbose.mk.in: New file. * configure.ac (AM_V, AM_DEFAULT_V): Remove output variables. (src/verbose.mk): New output file. * Makefile.in, admin/charsets/Makefile.in: * admin/grammars/Makefile.in, admin/unidata/Makefile.in: * doc/emacs/Makefile.in, doc/lispintro/Makefile.in: * doc/lispref/Makefile.in, doc/misc/Makefile.in, leim/Makefile.in: * lib-src/Makefile.in, lib/Makefile.in, lisp/Makefile.in: * lwlib/Makefile.in, nt/Makefile.in, oldXMenu/Makefile.in: * src/Makefile.in, src/verbose.mk.in, test/Makefile.in: Include src/verbose.mk rather than repeatedly defining AM_V_at etc.
118 lines
3.4 KiB
Makefile
118 lines
3.4 KiB
Makefile
### @configure_input@
|
|
|
|
# Copyright 2017-2021 Free Software Foundation, Inc.
|
|
|
|
# This file is part of GNU Emacs.
|
|
|
|
# GNU Emacs is free software: you can 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.
|
|
|
|
# GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
# Variables substituted by 'configure', and not autogenerated in gnulib.mk,
|
|
# or needed before gnulib.mk is included.
|
|
abs_top_srcdir = @abs_top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
all:
|
|
.PHONY: all
|
|
|
|
-include ${top_builddir}/src/verbose.mk
|
|
|
|
ALL_CFLAGS= \
|
|
$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) $(DEPFLAGS) \
|
|
$(GNULIB_WARN_CFLAGS) $(WERROR_CFLAGS) $(PROFILING_CFLAGS) $(CFLAGS) \
|
|
-I. -I../src -I$(srcdir) -I$(srcdir)/../src \
|
|
$(if $(patsubst e-%,,$(notdir $<)),,-Demacs)
|
|
|
|
SYSTEM_TYPE = @SYSTEM_TYPE@
|
|
ifeq ($(SYSTEM_TYPE),windows-nt)
|
|
include $(srcdir)/../nt/gnulib-cfg.mk
|
|
endif
|
|
include gnulib.mk
|
|
ifneq ($(SYSTEM_TYPE),windows-nt)
|
|
libgnu_a_SOURCES += openat-die.c save-cwd.c
|
|
endif
|
|
|
|
DEPDIR = deps
|
|
ifeq ($(AUTO_DEPEND),yes)
|
|
DEPFLAGS = -MMD -MF $(DEPDIR)/$*.d -MP
|
|
-include $(ALLOBJS:%.o=$(DEPDIR)/%.d)
|
|
else
|
|
DEPFLAGS =
|
|
endif
|
|
|
|
.PRECIOUS: ../config.status Makefile
|
|
../config.status: $(top_srcdir)/configure.ac $(top_srcdir)/m4/*.m4
|
|
$(MAKE) -C .. $(notdir $@)
|
|
Makefile: ../config.status $(srcdir)/Makefile.in
|
|
$(MAKE) -C .. src/$@
|
|
|
|
# Object modules that need not be built for Emacs.
|
|
# Emacs does not need e-regex.o (it has its own regex-emacs.c),
|
|
# and building it would just waste time.
|
|
not_emacs_OBJECTS = regex.o
|
|
|
|
libgnu_a_OBJECTS = fingerprint.o $(gl_LIBOBJS) \
|
|
$(patsubst %.c,%.o,$(filter %.c,$(libgnu_a_SOURCES)))
|
|
for_emacs_OBJECTS = $(filter-out $(not_emacs_OBJECTS),$(libgnu_a_OBJECTS))
|
|
libegnu_a_OBJECTS = $(patsubst %.o,e-%.o,$(for_emacs_OBJECTS))
|
|
|
|
$(libegnu_a_OBJECTS) $(libgnu_a_OBJECTS): $(BUILT_SOURCES)
|
|
|
|
.c.o:
|
|
$(AM_V_CC)$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -o $@ $<
|
|
e-%.o: %.c
|
|
$(AM_V_CC)$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Demacs -o $@ $<
|
|
|
|
all: libgnu.a $(if $(HYBRID_MALLOC),libegnu.a)
|
|
|
|
libgnu.a: $(libgnu_a_OBJECTS)
|
|
$(AM_V_at)rm -f $@
|
|
$(AM_V_AR)$(AR) $(ARFLAGS) $@ $(libgnu_a_OBJECTS)
|
|
$(AM_V_at)$(RANLIB) $@
|
|
|
|
libegnu.a: $(libegnu_a_OBJECTS)
|
|
$(AM_V_at)rm -f $@
|
|
$(AM_V_AR)$(AR) $(ARFLAGS) $@ $(libegnu_a_OBJECTS)
|
|
$(AM_V_at)$(RANLIB) $@
|
|
|
|
ETAGS = ../lib-src/etags$(EXEEXT)
|
|
$(ETAGS):
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
tagsfiles= $(wildcard $(srcdir)/*.[ch])
|
|
tags: TAGS
|
|
TAGS: $(ETAGS) $(tagsfiles)
|
|
$(ETAGS) $(tagsfiles)
|
|
.PHONY: $(ETAGS) tags
|
|
|
|
clean:
|
|
rm -f ./*.[ao] ./*/*.o ./*-t \#* $(DEPDIR)/*.d $(DEPDIR)/*/*.d
|
|
mostlyclean: clean
|
|
rm -f $(filter-out %-t,$(MOSTLYCLEANFILES))
|
|
distclean bootstrap-clean: mostlyclean
|
|
rm -f Makefile
|
|
rm -fr $(DEPDIR)
|
|
maintainer-clean: distclean
|
|
rm -f TAGS gnulib.mk
|
|
extraclean: distclean
|
|
-rmdir malloc sys 2>/dev/null
|
|
|
|
.PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
|
|
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
.NOEXPORT:
|