source: trunk/libs/newlib/src/newlib/libc/sys/rtems/Makefile.am

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 1.2 KB
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7AM_CCASFLAGS = $(INCLUDES)
8
9noinst_LIBRARIES = lib.a
10
11lib_a_SOURCES = dummysys.c cpusetalloc.c cpusetfree.c
12lib_a_CCASFLAGS = $(AM_CCASFLAGS)
13lib_a_CFLAGS = $(AM_CFLAGS)
14
15all-local: crt0.o
16
17ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
18CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
19
20install-data-local:
21        $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/arpa; \
22        for i in $(srcdir)/include/arpa/*.h; do \
23          $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/arpa/`basename $$i`; \
24        done; \
25        $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/net; \
26        for i in $(srcdir)/include/net/*.h; do \
27          $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/net/`basename $$i`; \
28        done; \
29        $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/netinet; \
30        for i in $(srcdir)/include/netinet/*.h; do \
31          $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/netinet/`basename $$i`; \
32        done; \
33        $(mkinstalldirs) $(DESTDIR)$(tooldir)/include/netinet6; \
34        for i in $(srcdir)/include/netinet6/*.h; do \
35          $(INSTALL_DATA) $$i $(DESTDIR)$(tooldir)/include/netinet6/`basename $$i`; \
36        done
Note: See TracBrowser for help on using the repository browser.