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

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

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

File size: 678 bytes
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5SUBDIRS = $(sys_dir) .
6
7if HAVE_SYS_DIR
8SYSLIB = lib.a
9endif
10
11noinst_DATA = $(CRT0)
12
13if USE_LIBTOOL
14else
15noinst_LIBRARIES = $(SYSLIB)
16
17lib.a: $(sys_dir)/lib.a
18        rm -f $@
19        ln $(sys_dir)/lib.a $@ >/dev/null 2>/dev/null \
20         || cp $(sys_dir)/lib.a $@
21endif # USE_LIBTOOL
22
23$(sys_dir)/libsys.$(aext): ; @true
24
25$(CRT0): $(sys_dir)/$(CRT0)
26        rm -f $@
27        ln $(sys_dir)/$(CRT0) $@ >/dev/null 2>/dev/null \
28         || cp $(sys_dir)/$(CRT0) $@
29
30$(sys_dir)/$(CRT0): ; @true
31
32CLEANFILES = $(CRT0)
33
34doc:
35
36docbook:
37
38ACLOCAL_AMFLAGS = -I ../.. -I ../../..
39CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
Note: See TracBrowser for help on using the repository browser.