2000-02-18 03:39:52 +08:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = cygnus
|
|
|
|
|
|
|
|
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
|
2006-04-12 03:02:16 +08:00
|
|
|
AM_CCASFLAGS = $(INCLUDES)
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
|
2013-11-27 22:53:59 +08:00
|
|
|
lib_a_SOURCES = dummysys.c cpusetalloc.c cpusetfree.c
|
2006-05-02 06:01:07 +08:00
|
|
|
lib_a_CCASFLAGS = $(AM_CCASFLAGS)
|
|
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2009-08-20 04:04:45 +08:00
|
|
|
all-local: crt0.o
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2007-05-25 01:33:42 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
2000-02-18 03:39:52 +08:00
|
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
2017-05-22 16:42:39 +08:00
|
|
|
|
|
|
|
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
|