### @configure_input@

# Copyright 2017-2019 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 = .
VPATH = .

# 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_srcdir = ..

all:
.PHONY: all

# 'make' verbosity.
AM_V_AR = $(am__v_AR_@AM_V@)
am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
am__v_AR_0 = @djecho "  AR      " $@;
am__v_AR_1 =

AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @djecho "  CC      " $@;
am__v_CC_1 =

AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @djecho "  GEN     " $@;
am__v_GEN_1 =

AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =

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 = msdos
ifeq ($(SYSTEM_TYPE),windows-nt)
  include $(srcdir)/../nt/gnulib-cfg.mk
endif
include gnulib.mk

DEPDIR = deps
AUTO_DEPEND = yes
ifeq ($(AUTO_DEPEND),yes)
  DEPFLAGS = -MMD -MF $(DEPDIR)/$*.d -MP
  -include $(ALLOBJS:%.o=$(DEPDIR)/%.d)
else
  DEPFLAGS =
endif

.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in
	$(MAKE) -C .. src/$@

libgnu_a_OBJECTS = $(gl_LIBOBJS) \
  $(patsubst %.c,%.o,$(filter %.c,$(libgnu_a_SOURCES)))
libegnu_a_OBJECTS = $(patsubst %.o,e-%.o,$(libgnu_a_OBJECTS))

$(libegnu_a_OBJECTS) $(libgnu_a_OBJECTS): $(BUILT_SOURCES)

.c.o:
	$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
e-%.o: %.c
	$(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Demacs -o $@ $<

all: libgnu.a $(if $(HYBRID_MALLOC),libegnu.a)

libgnu.a: $(libgnu_a_OBJECTS)
	rm -f $@
	$(AR) $(ARFLAGS) $@ $(libgnu_a_OBJECTS)
	$(RANLIB) $@

libegnu.a: $(libegnu_a_OBJECTS)
	rm -f $@
	$(AR) $(ARFLAGS) $@ $(libegnu_a_OBJECTS)
	$(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] *-t \#* $(DEPDIR)/*
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
.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:
