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>2023-12-27 07:59:00 +0300
committerMike Frysinger <vapier@gentoo.org>2024-01-20 04:26:52 +0300
commit695404d16f90e82a9ce2f68d89fa81b419285a89 (patch)
treee1e0dea1f98d33f945edb1dc30d60119aa1d8de5 /libgloss/nds32
parentf4c8e1623bbc3045c8639dd7da16960efeb90fda (diff)
libgloss: merge nds32 into top-level Makefile
Avoid a recursive make to speed things up a bit. A nds32le-elf build shows installed objects & libs produce same code.
Diffstat (limited to 'libgloss/nds32')
-rw-r--r--libgloss/nds32/Makefile.in143
-rw-r--r--libgloss/nds32/Makefile.inc50
2 files changed, 50 insertions, 143 deletions
diff --git a/libgloss/nds32/Makefile.in b/libgloss/nds32/Makefile.in
deleted file mode 100644
index 98311e045..000000000
--- a/libgloss/nds32/Makefile.in
+++ /dev/null
@@ -1,143 +0,0 @@
-# Makefile for libgloss/nds32
-# Copyright (c) 1996, 1998 Cygnus Support. 2012 Andes Porting.
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms are permitted
-# provided that the above copyright notice and this paragraph are
-# duplicated in all such forms and that any documentation,
-# and/or other materials related to such
-# distribution and use acknowledge that the software was developed
-# at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to
-# endorse or promote products derived from this software without
-# specific prior written permission.
-# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-
-DESTDIR =
-VPATH = @srcdir@ @srcdir@/..
-srcdir = @srcdir@
-objdir = .
-srcroot = $(srcdir)/../..
-objroot = $(objdir)/../..
-
-host_alias = @host_alias@
-target_alias = @target_alias@
-prefix = @prefix@
-exec_prefix = @exec_prefix@
-bindir = @bindir@
-libdir = @libdir@
-tooldir = $(exec_prefix)/$(target_alias)
-
-TOP = ../..
-SRCTOP = ../..
-
-# Multilib support variables.
-# TOP is used instead of MULTI{BUILD,SRC}TOP.
-MULTISRCTOP =
-MULTIBUILDTOP =
-MULTIDIRS =
-MULTISUBDIR =
-MULTIDO = true
-MULTICLEAN = true
-
-INSTALL = @INSTALL@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_DATA = @INSTALL_DATA@
-
-SHELL = /bin/sh
-
-CC = @CC@
-
-AS = @AS@
-AR = @AR@
-LD = @LD@
-RANLIB = @RANLIB@
-
-AR_FLAGS = qv
-BISON = bison
-MAKEINFO = makeinfo
-
-.NOEXPORT:
-MAKEOVERRIDES =
-
-TARGETDOC = ../../targetdep.tex
-
-CRT0 = crt0.o
-CRT1 = crt1.o
-
-
-
-SYSCALLS1 = _exit.o _open.o _close.o _read.o _write.o
-SYSCALLS2 = _lseek.o _unlink.o _getpid.o _kill.o _fstat.o
-SYSCALLS3 = _argvlen.o _argv.o _chdir.o _stat.o _chmod.o
-SYSCALLS4 = _utime.o _time.o _gettimeofday.o _times.o _link.o
-SYSCALLS5 = _rename.o _isatty.o _system.o _sbrk.o syscall_error_handler.o
-SYSCALLS = $(SYSCALLS1) $(SYSCALLS2) $(SYSCALLS3) $(SYSCALLS4) $(SYSCALLS5)
-GENERIC_LIBOBJS =
-
-LIBOBJS = $(SYSCALLS) $(GENERIC_LIBOBJS)
-LIBGLOSS = libgloss.a
-
-# Host specific makefile fragment comes in here.
-@host_makefile_frag@
-
-all: $(CRT0) $(CRT1) $(LIBGLOSS)
-
-libgloss.a: $(LIBOBJS)
- $(AR) $(ARFLAGS) $@ $(LIBOBJS)
- $(RANLIB) $@
-
-install:
- mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}
- $(INSTALL_DATA) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0)
- $(INSTALL_DATA) $(CRT1) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT1)
- $(INSTALL_DATA) $(LIBGLOSS) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(LIBGLOSS)
-
-
-
-
-
-
-
-clean mostlyclean:
- rm -f *~ *.[oa]
-
-distclean maintainer-clean realclean: clean
- rm -f Makefile
-
-info doc:
-install-info:
-clean-info:
-
-Makefile: Makefile.in ../config.status
- cd .. && $(SHELL) config.status
-
-# to support SunOS VPATH
-crt0.o: crt0.S
-crt1.o: crt1.S
-_exit.o: _exit.S
-_open.o: _open.S
-_close.o: _close.S
-_read.o: _read.S
-_write.o: _write.S
-_lseek.o: _lseek.S
-_unlink.o: _unlink.S
-_getpid.o: _getpid.S
-_kill.o: _kill.S
-_fstat.o: _fstat.S
-_argvlen.o: _argvlen.S
-_argv.o: _argv.S
-_chdir.o: _chdir.S
-_stat.o: _stat.S
-_chmod.o: _chmod.S
-_utime.o: _utime.S
-_time.o: _time.S
-_gettimeofday.o: _gettimeofday.S
-_times.o: _times.S
-_link.o: _link.S
-_rename.o: _rename.S
-_isatty.o: _isatty.S
-_system.o: _system.S
-_sbrk.o: _sbrk.S
-syscall_error_handler.o: syscall_error_handler.S
diff --git a/libgloss/nds32/Makefile.inc b/libgloss/nds32/Makefile.inc
new file mode 100644
index 000000000..e14f95424
--- /dev/null
+++ b/libgloss/nds32/Makefile.inc
@@ -0,0 +1,50 @@
+## Makefile for libgloss/nds32
+## Copyright (c) 1996, 1998 Cygnus Support. 2012 Andes Porting.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms are permitted
+## provided that the above copyright notice and this paragraph are
+## duplicated in all such forms and that any documentation,
+## and/or other materials related to such
+## distribution and use acknowledge that the software was developed
+## at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to
+## endorse or promote products derived from this software without
+## specific prior written permission.
+## THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+## IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+## WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+multilibtool_DATA += \
+ %D%/crt0.o \
+ %D%/crt1.o
+libobjs_a_SOURCES += \
+ %D%/crt0.S \
+ %D%/crt1.S
+
+multilibtool_LIBRARIES += %D%/libgloss.a
+%C%_libgloss_a_SOURCES = \
+ %D%/_exit.S \
+ %D%/_open.S \
+ %D%/_close.S \
+ %D%/_read.S \
+ %D%/_write.S \
+ %D%/_lseek.S \
+ %D%/_unlink.S \
+ %D%/_getpid.S \
+ %D%/_kill.S \
+ %D%/_fstat.S \
+ %D%/_argvlen.S \
+ %D%/_argv.S \
+ %D%/_chdir.S \
+ %D%/_stat.S \
+ %D%/_chmod.S \
+ %D%/_utime.S \
+ %D%/_time.S \
+ %D%/_gettimeofday.S \
+ %D%/_times.S \
+ %D%/_link.S \
+ %D%/_rename.S \
+ %D%/_isatty.S \
+ %D%/_system.S \
+ %D%/_sbrk.S \
+ %D%/syscall_error_handler.S