Changeset 30f6629 in rtems
- Timestamp:
- Apr 1, 2004, 10:59:51 AM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 08119f1
- Parents:
- 4caeb10
- Location:
- cpukit
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r4caeb10 r30f6629 1 2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org> 2 3 * Makefile.am: Add backward/*.h headers. 4 * itron/Makefile.am: Install itron.h to $(includedir)/rtems. 5 * libcsupport/Makefile.am: Install RTEMS specific headers to 6 $(includedir)/rtems. 7 * libfs/Makefile.am: Install imfs.h and dosfs.h to 8 $(includedir)/rtems. 9 1 10 2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org> 2 11 -
cpukit/Makefile.am
r4caeb10 r30f6629 21 21 CLEANFILES = preinstall-stamp 22 22 23 include_HEADERS = backward/asm.h backward/chain.h backward/clockdrv.h \ 24 backward/console.h backward/imfs.h backward/iosupp.h backward/ringbuf.h \ 25 backward/rtc.h backward/spurious.h backward/timerdrv.h \ 26 backward/vmeintr.h 27 28 if !UNIX 29 include_HEADERS += backward/dosfs.h 30 endif 31 32 if HAS_ITRON 33 include_HEADERS += backward/itron.h 34 endif 35 23 36 include_rtemsdir = $(includedir)/rtems 24 37 include_rtems_HEADERS = include/rtems/bspIo.h include/rtems/userenv.h \ … … 28 41 PREINSTALL_DIRS = 29 42 PREINSTALL_FILES = 43 44 $(PROJECT_INCLUDE)/$(dirstamp): 45 @$(mkdir_p) $(PROJECT_INCLUDE) 46 @: > $(PROJECT_INCLUDE)/$(dirstamp) 47 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp) 48 49 $(PROJECT_INCLUDE)/asm.h: backward/asm.h $(PROJECT_INCLUDE)/$(dirstamp) 50 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 52 53 $(PROJECT_INCLUDE)/chain.h: backward/chain.h $(PROJECT_INCLUDE)/$(dirstamp) 54 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/chain.h 55 PREINSTALL_FILES += $(PROJECT_INCLUDE)/chain.h 56 57 $(PROJECT_INCLUDE)/clockdrv.h: backward/clockdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 58 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/clockdrv.h 59 PREINSTALL_FILES += $(PROJECT_INCLUDE)/clockdrv.h 60 61 $(PROJECT_INCLUDE)/console.h: backward/console.h $(PROJECT_INCLUDE)/$(dirstamp) 62 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/console.h 63 PREINSTALL_FILES += $(PROJECT_INCLUDE)/console.h 64 65 $(PROJECT_INCLUDE)/imfs.h: backward/imfs.h $(PROJECT_INCLUDE)/$(dirstamp) 66 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/imfs.h 67 PREINSTALL_FILES += $(PROJECT_INCLUDE)/imfs.h 68 69 $(PROJECT_INCLUDE)/iosupp.h: backward/iosupp.h $(PROJECT_INCLUDE)/$(dirstamp) 70 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/iosupp.h 71 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iosupp.h 72 73 $(PROJECT_INCLUDE)/ringbuf.h: backward/ringbuf.h $(PROJECT_INCLUDE)/$(dirstamp) 74 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ringbuf.h 75 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ringbuf.h 76 77 $(PROJECT_INCLUDE)/rtc.h: backward/rtc.h $(PROJECT_INCLUDE)/$(dirstamp) 78 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtc.h 79 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtc.h 80 81 $(PROJECT_INCLUDE)/spurious.h: backward/spurious.h $(PROJECT_INCLUDE)/$(dirstamp) 82 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/spurious.h 83 PREINSTALL_FILES += $(PROJECT_INCLUDE)/spurious.h 84 85 $(PROJECT_INCLUDE)/timerdrv.h: backward/timerdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 86 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/timerdrv.h 87 PREINSTALL_FILES += $(PROJECT_INCLUDE)/timerdrv.h 88 89 $(PROJECT_INCLUDE)/vmeintr.h: backward/vmeintr.h $(PROJECT_INCLUDE)/$(dirstamp) 90 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/vmeintr.h 91 PREINSTALL_FILES += $(PROJECT_INCLUDE)/vmeintr.h 92 93 if !UNIX 94 $(PROJECT_INCLUDE)/dosfs.h: backward/dosfs.h $(PROJECT_INCLUDE)/$(dirstamp) 95 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/dosfs.h 96 PREINSTALL_FILES += $(PROJECT_INCLUDE)/dosfs.h 97 endif 98 99 if HAS_ITRON 100 $(PROJECT_INCLUDE)/itron.h: backward/itron.h $(PROJECT_INCLUDE)/$(dirstamp) 101 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/itron.h 102 PREINSTALL_FILES += $(PROJECT_INCLUDE)/itron.h 103 endif 30 104 31 105 $(PROJECT_INCLUDE)/rtems/$(dirstamp): -
cpukit/itron/Makefile.am
r4caeb10 r30f6629 12 12 ## include 13 13 14 include_HEADERS = include/itron.h 14 include_rtemsdir = $(includedir)/rtems 15 include_rtems_HEADERS = include/itron.h 15 16 16 17 ## itronsys … … 128 129 PREINSTALL_FILES = 129 130 130 $(PROJECT_INCLUDE)/$(dirstamp):131 @$(mkdir_p) $(PROJECT_INCLUDE)132 @: > $(PROJECT_INCLUDE)/$(dirstamp)133 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp)134 135 131 if HAS_ITRON 136 $(PROJECT_INCLUDE)/itron.h: include/itron.h $(PROJECT_INCLUDE)/$(dirstamp) 137 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/itron.h 138 PREINSTALL_FILES += $(PROJECT_INCLUDE)/itron.h 132 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 133 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems 134 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 135 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 136 137 $(PROJECT_INCLUDE)/rtems/itron.h: include/itron.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 138 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/itron.h 139 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/itron.h 139 140 140 141 $(PROJECT_INCLUDE)/itronsys/$(dirstamp): -
cpukit/libcsupport/Makefile.am
r4caeb10 r30f6629 17 17 libcsupport_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 18 18 19 include_HEADERS = include/chain.h include/console.h include/clockdrv.h \ 19 include_rtemsdir = $(includedir)/rtems 20 include_rtems_HEADERS = include/chain.h include/console.h include/clockdrv.h \ 20 21 include/iosupp.h include/ringbuf.h include/rtc.h include/spurious.h \ 21 22 include/timerdrv.h include/vmeintr.h 22 23 24 include_HEADERS = 23 25 if NEED_STDINT_H 24 26 include_HEADERS += include/stdint.h … … 36 38 37 39 ## rtems 38 include_rtemsdir = $(includedir)/rtems 39 40 include_rtems_HEADERS = include/rtems/assoc.h include/rtems/error.h \ 40 include_rtems_HEADERS += include/rtems/assoc.h include/rtems/error.h \ 41 41 include/rtems/libcsupport.h include/rtems/libio.h include/rtems/libio_.h \ 42 42 include/rtems/termiostypes.h include/rtems/cdefs.h … … 138 138 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp) 139 139 140 $(PROJECT_INCLUDE)/chain.h: include/chain.h $(PROJECT_INCLUDE)/$(dirstamp) 141 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/chain.h 142 PREINSTALL_FILES += $(PROJECT_INCLUDE)/chain.h 143 144 $(PROJECT_INCLUDE)/console.h: include/console.h $(PROJECT_INCLUDE)/$(dirstamp) 145 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/console.h 146 PREINSTALL_FILES += $(PROJECT_INCLUDE)/console.h 147 148 $(PROJECT_INCLUDE)/clockdrv.h: include/clockdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 149 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/clockdrv.h 150 PREINSTALL_FILES += $(PROJECT_INCLUDE)/clockdrv.h 151 152 $(PROJECT_INCLUDE)/iosupp.h: include/iosupp.h $(PROJECT_INCLUDE)/$(dirstamp) 153 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/iosupp.h 154 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iosupp.h 155 156 $(PROJECT_INCLUDE)/ringbuf.h: include/ringbuf.h $(PROJECT_INCLUDE)/$(dirstamp) 157 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ringbuf.h 158 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ringbuf.h 159 160 $(PROJECT_INCLUDE)/rtc.h: include/rtc.h $(PROJECT_INCLUDE)/$(dirstamp) 161 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtc.h 162 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtc.h 163 164 $(PROJECT_INCLUDE)/spurious.h: include/spurious.h $(PROJECT_INCLUDE)/$(dirstamp) 165 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/spurious.h 166 PREINSTALL_FILES += $(PROJECT_INCLUDE)/spurious.h 167 168 $(PROJECT_INCLUDE)/timerdrv.h: include/timerdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 169 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/timerdrv.h 170 PREINSTALL_FILES += $(PROJECT_INCLUDE)/timerdrv.h 171 172 $(PROJECT_INCLUDE)/vmeintr.h: include/vmeintr.h $(PROJECT_INCLUDE)/$(dirstamp) 173 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/vmeintr.h 174 PREINSTALL_FILES += $(PROJECT_INCLUDE)/vmeintr.h 140 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 141 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems 142 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 143 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 144 145 $(PROJECT_INCLUDE)/rtems/chain.h: include/chain.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 146 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/chain.h 147 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/chain.h 148 149 $(PROJECT_INCLUDE)/rtems/console.h: include/console.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 150 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/console.h 151 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/console.h 152 153 $(PROJECT_INCLUDE)/rtems/clockdrv.h: include/clockdrv.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 154 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/clockdrv.h 155 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/clockdrv.h 156 157 $(PROJECT_INCLUDE)/rtems/iosupp.h: include/iosupp.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 158 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/iosupp.h 159 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/iosupp.h 160 161 $(PROJECT_INCLUDE)/rtems/ringbuf.h: include/ringbuf.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 162 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ringbuf.h 163 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ringbuf.h 164 165 $(PROJECT_INCLUDE)/rtems/rtc.h: include/rtc.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 166 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/rtc.h 167 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/rtc.h 168 169 $(PROJECT_INCLUDE)/rtems/spurious.h: include/spurious.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 170 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/spurious.h 171 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/spurious.h 172 173 $(PROJECT_INCLUDE)/rtems/timerdrv.h: include/timerdrv.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 174 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/timerdrv.h 175 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/timerdrv.h 176 177 $(PROJECT_INCLUDE)/rtems/vmeintr.h: include/vmeintr.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 178 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/vmeintr.h 179 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/vmeintr.h 175 180 176 181 if NEED_STDINT_H … … 199 204 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/mc68681.h 200 205 201 $(PROJECT_INCLUDE)/rtems/$(dirstamp):202 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems203 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)204 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)205 206 206 $(PROJECT_INCLUDE)/rtems/assoc.h: include/rtems/assoc.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 207 207 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/assoc.h -
cpukit/libfs/Makefile.am
r4caeb10 r30f6629 10 10 EXTRA_DIST = README 11 11 12 include_HEADERS = 12 include_rtemsdir = $(includedir)/rtems 13 include_rtems_HEADERS = 13 14 14 15 EXTRA_LIBRARIES = libimfs.a … … 44 45 libimfs_g_a_SOURCES = $(libimfs_a_SOURCES) 45 46 46 include_ HEADERS += src/imfs/imfs.h47 include_rtems_HEADERS += src/imfs/imfs.h 47 48 48 49 IMFSLIB = libimfs$(LIB_VARIANT).a … … 75 76 libdosfs_g_a_SOURCES = $(libdosfs_a_SOURCES) 76 77 77 include_ HEADERS += src/dosfs/dosfs.h78 include_rtems_HEADERS += src/dosfs/dosfs.h 78 79 79 80 DOSFSLIB = libdosfs$(LIB_VARIANT).a … … 89 90 PREINSTALL_FILES = 90 91 91 $(PROJECT_INCLUDE)/ $(dirstamp):92 @$(mkdir_p) $(PROJECT_INCLUDE) 93 @: > $(PROJECT_INCLUDE)/ $(dirstamp)94 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/ $(dirstamp)92 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 93 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems 94 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 95 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 95 96 96 $(PROJECT_INCLUDE)/ imfs.h: src/imfs/imfs.h $(PROJECT_INCLUDE)/$(dirstamp)97 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ imfs.h98 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ imfs.h97 $(PROJECT_INCLUDE)/rtems/imfs.h: src/imfs/imfs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 98 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/imfs.h 99 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/imfs.h 99 100 100 101 if !UNIX 101 $(PROJECT_INCLUDE)/ dosfs.h: src/dosfs/dosfs.h $(PROJECT_INCLUDE)/$(dirstamp)102 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ dosfs.h103 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ dosfs.h102 $(PROJECT_INCLUDE)/rtems/dosfs.h: src/dosfs/dosfs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 103 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/dosfs.h 104 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/dosfs.h 104 105 endif 105 106
Note: See TracChangeset
for help on using the changeset viewer.