source: trunk/libs/newlib/src/newlib/libc/time/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: 1.1 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
7LIB_SOURCES = \
8        asctime.c       \
9        asctime_r.c     \
10        clock.c         \
11        ctime.c         \
12        ctime_r.c       \
13        difftime.c      \
14        gettzinfo.c     \
15        gmtime.c        \
16        gmtime_r.c      \
17        lcltime.c       \
18        lcltime_r.c     \
19        mktime.c        \
20        month_lengths.c \
21        strftime.c      \
22        strptime.c      \
23        time.c          \
24        tzcalc_limits.c \
25        tzlock.c        \
26        tzset.c         \
27        tzset_r.c       \
28        tzvars.c        \
29        wcsftime.c
30
31libtime_la_LDFLAGS = -Xcompiler -nostdlib
32
33if USE_LIBTOOL
34noinst_LTLIBRARIES = libtime.la
35libtime_la_SOURCES = $(LIB_SOURCES)
36noinst_DATA = objectlist.awk.in
37else
38noinst_LIBRARIES = lib.a
39lib_a_SOURCES = $(LIB_SOURCES)
40lib_a_CFLAGS = $(AM_CFLAGS)
41noinst_DATA =
42endif # USE_LIBTOOL
43
44# This rule is needed so that wcsftime.o is rebuilt when strftime.c changes.
45include $(srcdir)/../../Makefile.shared
46
47$(lpfx)wcsftime.$(oext): strftime.c
48
49CHEWOUT_FILES = \
50        asctime.def     \
51        clock.def       \
52        ctime.def       \
53        difftime.def    \
54        gmtime.def      \
55        lcltime.def     \
56        mktime.def      \
57        strftime.def    \
58        time.def        \
59        tzlock.def      \
60        tzset.def       \
61        wcsftime.def
62
63CHAPTERS = time.tex
Note: See TracBrowser for help on using the repository browser.