Changeset 8b273c2 in rtems
- Timestamp:
- 11/23/03 10:24:09 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d6a444d
- Parents:
- 51f97de
- Location:
- cpukit/sapi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/sapi/ChangeLog
r51f97de r8b273c2 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reworked. 4 1 5 2003-09-04 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/sapi/Makefile.am
r51f97de r8b273c2 7 7 include $(top_srcdir)/automake/lib.am 8 8 9 $(PROJECT_INCLUDE):10 @$(mkinstalldirs) $@11 $(PROJECT_INCLUDE)/rtems:12 @$(mkinstalldirs) $@13 14 $(PROJECT_INCLUDE)/%.h: include/%.h15 $(INSTALL_DATA) $< $@16 $(PROJECT_INCLUDE)/%.inl: $(INLINEdir)/%.inl17 $(INSTALL_DATA) $< $@18 19 9 include_HEADERS = include/confdefs.h 20 10 21 PREINSTALL_FILES = $(PROJECT_INCLUDE)22 PREINSTALL_FILES += $(include_HEADERS:include/%=$(PROJECT_INCLUDE)/%)23 24 11 include_rtemsdir = $(includedir)/rtems 25 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems26 12 27 13 include_rtems_HEADERS = include/rtems/config.h include/rtems/extension.h \ 28 include/rtems/fatal.h \ 29 include/rtems/init.h include/rtems/io.h include/rtems/mptables.h \ 30 include/rtems/sptables.h 31 32 PREINSTALL_FILES += $(include_rtems_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 14 include/rtems/fatal.h include/rtems/init.h include/rtems/io.h \ 15 include/rtems/mptables.h include/rtems/sptables.h 33 16 34 17 EXTRA_DIST = include/rtems/README 35 18 36 19 ## inline 37 38 inline_H_FILES = inline/rtems/extension.inl39 noinst_HEADERS = $(inline_H_FILES)40 41 20 if INLINE 42 PREINSTALL_FILES += $(inline_H_FILES:inline/%=$(PROJECT_INCLUDE)/%) 43 include_rtems_HEADERS += $(inline_H_FILES) 21 include_rtems_HEADERS += inline/rtems/extension.inl 44 22 endif 45 23 46 24 ## macros 47 macros_H_FILES = macros/rtems/extension.inl48 noinst_HEADERS += $(macros_H_FILES)49 50 25 if MACROS 51 PREINSTALL_FILES += $(macros_H_FILES:macros/%=$(PROJECT_INCLUDE)/%) 52 include_rtems_HEADERS += $(macros_H_FILES) 26 include_rtems_HEADERS += macros/rtems/extension.inl 53 27 endif 54 28 … … 57 31 LIB=$(ARCH)/libsapi.a 58 32 59 EXTENSION_FILES = src/extension.c src/extensioncreate.c src/extensiondelete.c\60 src/extension ident.c33 EXTENSION_FILES = src/extension.c src/extensioncreate.c \ 34 src/extensiondelete.c src/extensionident.c 61 35 C_FILES = src/debug.c $(EXTENSION_FILES) src/fatal.c src/exinit.c src/io.c \ 62 36 src/itronapi.c src/posixapi.c src/rtemsapi.c … … 79 53 EXTRA_DIST += $(C_FILES) 80 54 55 PREINSTALL_FILES = 56 57 $(PROJECT_INCLUDE)/confdefs.h: include/confdefs.h 58 $(INSTALL_DATA) $< $@ 59 PREINSTALL_FILES += $(PROJECT_INCLUDE)/confdefs.h 60 61 $(PROJECT_INCLUDE)/rtems: 62 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 63 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 64 65 $(PROJECT_INCLUDE)/rtems/config.h: include/rtems/config.h 66 $(INSTALL_DATA) $< $@ 67 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/config.h 68 69 $(PROJECT_INCLUDE)/rtems/extension.h: include/rtems/extension.h 70 $(INSTALL_DATA) $< $@ 71 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.h 72 73 $(PROJECT_INCLUDE)/rtems/fatal.h: include/rtems/fatal.h 74 $(INSTALL_DATA) $< $@ 75 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fatal.h 76 77 $(PROJECT_INCLUDE)/rtems/init.h: include/rtems/init.h 78 $(INSTALL_DATA) $< $@ 79 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/init.h 80 81 $(PROJECT_INCLUDE)/rtems/io.h: include/rtems/io.h 82 $(INSTALL_DATA) $< $@ 83 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/io.h 84 85 $(PROJECT_INCLUDE)/rtems/mptables.h: include/rtems/mptables.h 86 $(INSTALL_DATA) $< $@ 87 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mptables.h 88 89 $(PROJECT_INCLUDE)/rtems/sptables.h: include/rtems/sptables.h 90 $(INSTALL_DATA) $< $@ 91 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/sptables.h 92 93 if INLINE 94 $(PROJECT_INCLUDE)/rtems/extension.inl: inline/rtems/extension.inl 95 $(INSTALL_DATA) $< $@ 96 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl 97 endif 98 99 if MACROS 100 $(PROJECT_INCLUDE)/rtems/extension.inl: macros/rtems/extension.inl 101 $(INSTALL_DATA) $< $@ 102 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl 103 endif 104 81 105 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.