mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-23 23:47:22 +08:00
a100e80fc9
The newlib & libgloss dirs are already generated using autoconf-2.69. To avoid merging new code and/or accidental regeneration using diff versions, leverage config/override.m4 to pin to 2.69 exactly. This matches what gcc/binutils/gdb are already doing. The README file already says to use autoconf-2.69. To accomplish this, it's just as simple as adding -I flags to the top-level config/ dir when running aclocal. This is because the override.m4 file overrides AC_INIT to first require the specific autoconf version before calling the real AC_INIT.
138 lines
2.8 KiB
Makefile
138 lines
2.8 KiB
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AM_CPPFLAGS = -I$(srcdir)/include $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) $(INCLTDL)
|
|
|
|
SUBDIRS = machine
|
|
|
|
SUBLIBS = \
|
|
$(PHOENIX_MACH_LIB)
|
|
|
|
SOURCES = \
|
|
net/domainname.c \
|
|
net/freeaddrinfo.c \
|
|
net/getaddrinfo.c \
|
|
net/gethostbyaddr.c \
|
|
net/gethostbyname.c \
|
|
net/getnameinfo.c \
|
|
net/getservbyname.c \
|
|
net/getservbyport.c \
|
|
net/herror.c \
|
|
net/hostname.c \
|
|
net/inet_addr.c \
|
|
net/inet_aton.c \
|
|
net/inet_lnaof.c \
|
|
net/inet_makeaddr.c \
|
|
net/inet_net_ntop.c \
|
|
net/inet_net_pton.c \
|
|
net/inet_netof.c \
|
|
net/inet_network.c \
|
|
net/inet_ntoa.c \
|
|
net/inet_ntop.c \
|
|
net/inet_pton.c \
|
|
net/nametoindex.c \
|
|
net/network.c \
|
|
alarm.c \
|
|
chmod.c \
|
|
chown.c \
|
|
clocks.c \
|
|
dup.c \
|
|
endmntent.c \
|
|
exec.c \
|
|
fcntl.c \
|
|
fork.c \
|
|
fs.c \
|
|
getentropy.c \
|
|
getmntent.c \
|
|
getpagesize.c \
|
|
groups.c \
|
|
ids.c \
|
|
io.c \
|
|
ioctl.c \
|
|
mmap.c \
|
|
mount.c \
|
|
nanosleep.c \
|
|
phoenix.c \
|
|
pid.c \
|
|
pipe.c \
|
|
poll.c \
|
|
realpath.c \
|
|
reboot.c \
|
|
resource.c \
|
|
sbrk.c \
|
|
sched.c \
|
|
select.c \
|
|
semaphore.c \
|
|
setmntent.c \
|
|
shm.c \
|
|
signal.c \
|
|
socket.c \
|
|
sockopt.c \
|
|
stat.c \
|
|
statfs.c \
|
|
symlink.c \
|
|
sync.c \
|
|
sysconf.c \
|
|
syslog.c \
|
|
time.c \
|
|
truncate.c \
|
|
tty.c \
|
|
uname.c \
|
|
utime.c \
|
|
wait.c
|
|
|
|
ADD_OBJS =
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
lib_a_SOURCES = $(SOURCES)
|
|
lib_a_LIBADD = $(ADD_OBJS)
|
|
lib_a_DEPENDENCIES = $(ADD_OBJS)
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
LIBC_COMPILE = $(COMPILE)
|
|
noinst_DATA =
|
|
|
|
lib.a: $(lib_a_OBJECTS)
|
|
rm -f $@
|
|
rm -rf tmp
|
|
mkdir tmp
|
|
cd tmp; \
|
|
for i in $(SUBLIBS); do \
|
|
$(AR) x ../$$i; \
|
|
done;
|
|
$(AR) $(AR_FLAGS) $@ tmp/*.o $^
|
|
$(RANLIB) $@
|
|
rm -rf tmp
|
|
|
|
all-local: crt0.o
|
|
|
|
crt0.o: machine/crt0.o
|
|
rm -f $@
|
|
ln machine/crt0.o $@ >/dev/null 2>/dev/null || cp machine/crt0.o $@
|
|
|
|
machine/crt0.o: ; @true
|
|
|
|
AM_CFLAGS = -I $(srcdir)/../../stdio
|
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../.. -I ../../../../config
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
|
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/arpa; \
|
|
for i in $(srcdir)/include/arpa/*.h; do \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/arpa/`basename $$i`; \
|
|
done; \
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/net; \
|
|
for i in $(srcdir)/include/net/*.h; do \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/net/`basename $$i`; \
|
|
done; \
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/netinet; \
|
|
for i in $(srcdir)/include/netinet/*.h; do \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/netinet/`basename $$i`; \
|
|
done; \
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/netinet6; \
|
|
for i in $(srcdir)/include/netinet6/*.h; do \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/netinet6/`basename $$i`; \
|
|
done; \
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/include/netpacket; \
|
|
for i in $(srcdir)/include/netpacket/*.h; do \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/netpacket/`basename $$i`; \
|
|
done;
|