source: rtems/cpukit/sapi/Makefile.am @ 07347cb

4.104.114.84.95
Last change on this file since 07347cb was 07347cb, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/04 at 17:48:16

2004-01-07 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Build library using EXTRA_LIBRARIES and automake rules.
  • Property mode set to 100644
File size: 3.5 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/multilib.am
6include $(top_srcdir)/automake/amcompile.am
7
8include_HEADERS = include/confdefs.h
9
10include_rtemsdir = $(includedir)/rtems
11
12include_rtems_HEADERS = include/rtems/config.h include/rtems/extension.h \
13    include/rtems/fatal.h include/rtems/init.h include/rtems/io.h \
14    include/rtems/mptables.h include/rtems/sptables.h
15
16EXTRA_DIST = include/rtems/README
17
18if INLINE
19include_rtems_HEADERS += inline/rtems/extension.inl
20else
21include_rtems_HEADERS += macros/rtems/extension.inl
22endif
23
24## src
25
26EXTENSION_FILES = src/extension.c src/extensioncreate.c \
27    src/extensiondelete.c src/extensionident.c
28C_FILES = src/debug.c $(EXTENSION_FILES) src/fatal.c src/exinit.c src/io.c \
29    src/itronapi.c src/posixapi.c src/rtemsapi.c
30
31AM_CPPFLAGS += -I$(top_builddir)
32AM_CPPFLAGS += -D__RTEMS_INSIDE__
33
34EXTRA_LIBRARIES = o-optimize/libsapi.a
35o_optimize_libsapi_a_SOURCES = $(C_FILES)
36o_optimize_libsapi_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
37
38EXTRA_LIBRARIES += o-debug/libsapi.a
39o_debug_libsapi_a_SOURCES = $(C_FILES)
40o_debug_libsapi_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
41
42all-local: $(PREINSTALL_FILES) $(ARCH)/libsapi.a
43
44EXTRA_DIST += $(C_FILES)
45
46PREINSTALL_FILES =
47
48$(PROJECT_INCLUDE)/$(dirstamp):
49        @$(mkdir_p) $(PROJECT_INCLUDE)
50        @: > $(PROJECT_INCLUDE)/$(dirstamp)
51
52$(PROJECT_INCLUDE)/confdefs.h: include/confdefs.h $(PROJECT_INCLUDE)/$(dirstamp)
53        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/confdefs.h
54PREINSTALL_FILES += $(PROJECT_INCLUDE)/confdefs.h
55
56$(PROJECT_INCLUDE)/rtems/$(dirstamp):
57        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
58        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
59
60$(PROJECT_INCLUDE)/rtems/config.h: include/rtems/config.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
61        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/config.h
62PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/config.h
63
64$(PROJECT_INCLUDE)/rtems/extension.h: include/rtems/extension.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
65        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/extension.h
66PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.h
67
68$(PROJECT_INCLUDE)/rtems/fatal.h: include/rtems/fatal.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
69        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/fatal.h
70PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fatal.h
71
72$(PROJECT_INCLUDE)/rtems/init.h: include/rtems/init.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
73        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/init.h
74PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/init.h
75
76$(PROJECT_INCLUDE)/rtems/io.h: include/rtems/io.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
77        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/io.h
78PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/io.h
79
80$(PROJECT_INCLUDE)/rtems/mptables.h: include/rtems/mptables.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
81        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/mptables.h
82PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mptables.h
83
84$(PROJECT_INCLUDE)/rtems/sptables.h: include/rtems/sptables.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
85        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/sptables.h
86PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/sptables.h
87
88if INLINE
89$(PROJECT_INCLUDE)/rtems/extension.inl: inline/rtems/extension.inl $(PROJECT_INCLUDE)/rtems/$(dirstamp)
90        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/extension.inl
91PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl
92
93else
94$(PROJECT_INCLUDE)/rtems/extension.inl: macros/rtems/extension.inl $(PROJECT_INCLUDE)/rtems/$(dirstamp)
95        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/extension.inl
96PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl
97endif
98
99include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.