Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-02 08:01:43 +0300
committerMike Frysinger <vapier@gentoo.org>2022-02-11 12:29:37 +0300
commitf8aede785505de293feb0c105450a0f32e8cbfe6 (patch)
treea8b4f4a52bacadd1a0852bbba9579a7b813ace40 /libgloss/Makefile.am
parentad28934ad3bb2e9d6d231f55cedbd72a5480763e (diff)
libgloss: merge libnosys into top-level Makefile
Avoid a recursive make to speed things up a bit.
Diffstat (limited to 'libgloss/Makefile.am')
-rw-r--r--libgloss/Makefile.am13
1 files changed, 13 insertions, 0 deletions
diff --git a/libgloss/Makefile.am b/libgloss/Makefile.am
index 81ba50a70..1209ec9d8 100644
--- a/libgloss/Makefile.am
+++ b/libgloss/Makefile.am
@@ -3,6 +3,7 @@
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
# Variables that will accumulate in subdirs.
+check_PROGRAMS =
info_TEXINFOS =
PHONY =
@@ -10,6 +11,15 @@ SUBDIRS = @subdirs@ .
tooldir = $(exec_prefix)/$(target_alias)
+multilibtooldir = $(tooldir)/lib$(MULTISUBDIR)
+multilibtool_DATA =
+multilibtool_LIBRARIES =
+
+# A fake library so automake will generate rules for plain objects that we want
+# to install (e.g. our crt0.o objects).
+noinst_LIBRARIES = libobjs.a
+libobjs_a_SOURCES =
+
## These are roughly topologically sorted in order to make porting more
## streamlined.
FLAGS_TO_PASS = \
@@ -43,3 +53,6 @@ TEXINFO_TEX = ../texinfo/texinfo.tex
if HAVE_DOC
include doc/Makefile.inc
endif
+if CONFIG_LIBNOSYS
+include libnosys/Makefile.inc
+endif