source: trunk/libs/newlib/src/newlib/libc/misc/Makefile.am @ 577

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

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

File size: 656 bytes
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7LIB_SOURCES = __dprintf.c unctrl.c ffs.c init.c fini.c
8
9if NEWLIB_RETARGETABLE_LOCKING
10LIB_SOURCES += \
11        lock.c
12endif
13
14libmisc_la_LDFLAGS = -Xcompiler -nostdlib
15
16if USE_LIBTOOL
17noinst_LTLIBRARIES = libmisc.la
18libmisc_la_SOURCES = $(LIB_SOURCES)
19noinst_DATA = objectlist.awk.in
20else
21noinst_LIBRARIES = lib.a
22lib_a_SOURCES = $(LIB_SOURCES)
23lib_a_CFLAGS = $(AM_CFLAGS)
24noinst_DATA =
25endif # USE_LIBTOOL
26
27include $(srcdir)/../../Makefile.shared
28
29CHEWOUT_FILES = unctrl.def lock.def ffs.def
30CHAPTERS = misc.tex
Note: See TracBrowser for help on using the repository browser.