source: rtems/cpukit/sapi/Makefile.am @ fc0ec69

4.104.114.84.95
Last change on this file since fc0ec69 was 53a8958, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 13:39:43

2003-12-12 Ralf Corsepius <corsepiu@…>

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