Changeset 6cb5bcd in rtems
- Timestamp:
- 11/22/03 11:31:12 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bcb9ab43
- Parents:
- 3d4d5ee
- Location:
- cpukit/libcsupport
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/ChangeLog
r3d4d5ee r6cb5bcd 1 2003-11-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/rtems/cdefs.h: New. 4 * Makefile.am: Completely reworked. 5 1 6 2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
cpukit/libcsupport/Makefile.am
r3d4d5ee r6cb5bcd 8 8 9 9 include_HEADERS = include/chain.h include/console.h include/clockdrv.h \ 10 include/iosupp.h include/ringbuf.h include/rtc.h \11 include/ spurious.h include/timerdrv.h include/vmeintr.h10 include/iosupp.h include/ringbuf.h include/rtc.h include/spurious.h \ 11 include/timerdrv.h include/vmeintr.h 12 12 13 13 if NEED_STDINT_H 14 LIBC_HFILES= include/stdint.h14 include_HEADERS += include/stdint.h 15 15 endif 16 16 if NEED_INTTYPES_H 17 LIBC_HFILES += include/inttypes.h 18 endif 19 include_HEADERS += $(LIBC_HFILES) 20 21 PREINSTALL_FILES = $(PROJECT_INCLUDE) \ 22 $(include_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 23 24 $(PROJECT_INCLUDE): 25 @$(mkinstalldirs) $@ 26 $(PROJECT_INCLUDE)/motorola: 27 @$(mkinstalldirs) $@ 28 $(PROJECT_INCLUDE)/rtems: 29 @$(mkinstalldirs) $@ 30 $(PROJECT_INCLUDE)/sys: 31 @$(mkinstalldirs) $@ 32 $(PROJECT_INCLUDE)/zilog: 33 @$(mkinstalldirs) $@ 34 35 $(PROJECT_INCLUDE)/%.h: include/%.h 36 $(INSTALL_DATA) $< $@ 17 include_HEADERS += include/inttypes.h 18 endif 37 19 38 20 ## motorola … … 40 22 include_motoroladir = $(includedir)/motorola 41 23 42 include_motorola_HEADERS = include/motorola/mc68230.h include/motorola/mc68681.h 43 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola \ 45 $(include_motorola_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 24 include_motorola_HEADERS = include/motorola/mc68230.h \ 25 include/motorola/mc68681.h 46 26 47 27 ## rtems 48 28 include_rtemsdir = $(includedir)/rtems 49 29 50 include_rtems_HEADERS = \ 51 include/rtems/assoc.h include/rtems/error.h include/rtems/libcsupport.h \ 52 include/rtems/libio.h include/rtems/libio_.h \ 53 include/rtems/termiostypes.h 54 55 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \ 56 $(include_rtems_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 30 include_rtems_HEADERS = include/rtems/assoc.h include/rtems/error.h \ 31 include/rtems/libcsupport.h include/rtems/libio.h include/rtems/libio_.h \ 32 include/rtems/termiostypes.h include/rtems/cdefs.h 57 33 58 34 ## sys … … 60 36 include_sysdir = $(includedir)/sys 61 37 38 # FIXME: We should not install to include/sys unless using newlib. 39 include_sys_HEADERS = include/sys/filio.h include/sys/ioccom.h \ 40 include/sys/ioctl.h include/sys/sockio.h include/sys/ttycom.h 41 62 42 if NEWLIB 63 NEWLIB_H_FILES= include/sys/termios.h include/sys/utsname.h43 include_sys_HEADERS += include/sys/termios.h include/sys/utsname.h 64 44 endif 65 45 66 46 if NEED_SYS_CDEFS_H 67 SYS_H_FILES = include/sys/cdefs.h 68 endif 69 70 # FIXME: We should not install to include/sys unless using newlib. 71 include_sys_HEADERS = \ 72 include/sys/filio.h \ 73 include/sys/ioccom.h \ 74 include/sys/ioctl.h \ 75 include/sys/sockio.h \ 76 include/sys/termios.h \ 77 include/sys/ttycom.h \ 78 $(SYS_H_FILES) \ 79 $(NEWLIB_H_FILES) 80 81 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \ 82 $(include_sys_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 47 include_sys_HEADERS += include/sys/cdefs.h 48 endif 83 49 84 50 ## zilog … … 88 54 include_zilog_HEADERS = include/zilog/z8036.h include/zilog/z8530.h \ 89 55 include/zilog/z8536.h 90 91 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog \92 $(include_zilog_HEADERS:include/%=$(PROJECT_INCLUDE)/%)93 56 94 57 ## General stuff … … 125 88 126 89 ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \ 127 src/getlogin.c src/getpgrp.c \ 128 src/getpid.c src/getppid.c src/getuid.c src/setpgid.c src/setsid.c 129 130 MALLOC_C_FILES = src/malloc.c src/mallocfreespace.c src/__brk.c src/__sbrk.c 90 src/getlogin.c src/getpgrp.c src/getpid.c src/getppid.c src/getuid.c \ 91 src/setpgid.c src/setsid.c 92 93 MALLOC_C_FILES = src/malloc.c src/mallocfreespace.c src/__brk.c \ 94 src/__sbrk.c 131 95 132 96 PASSWORD_GROUP_C_FILES = src/getpwent.c … … 143 107 BSD_LIBC_C_FILES = src/strlcpy.c src/strlcat.c 144 108 145 COMMON_C_FILES = src/gxx_wrappers.c src/printk.c \ 146 $(BSD_LIBC_C_FILES) \ 147 $(BASE_FS_C_FILES) \ 148 $(MALLOC_C_FILES) $(TERMIOS_C_FILES) $(ERROR_C_FILES) \ 109 COMMON_C_FILES = src/gxx_wrappers.c src/printk.c $(BSD_LIBC_C_FILES) \ 110 $(BASE_FS_C_FILES) $(MALLOC_C_FILES) $(TERMIOS_C_FILES) $(ERROR_C_FILES) \ 149 111 $(ASSOCIATION_C_FILES) 150 112 … … 182 144 $(UNIX_C_FILES) 183 145 146 BUILT_SOURCES = $(PREINSTALL_FILES) 147 148 PREINSTALL_FILES = 149 150 $(PROJECT_INCLUDE)/chain.h: include/chain.h 151 $(INSTALL_DATA) $< $@ 152 PREINSTALL_FILES += $(PROJECT_INCLUDE)/chain.h 153 154 $(PROJECT_INCLUDE)/console.h: include/console.h 155 $(INSTALL_DATA) $< $@ 156 PREINSTALL_FILES += $(PROJECT_INCLUDE)/console.h 157 158 $(PROJECT_INCLUDE)/clockdrv.h: include/clockdrv.h 159 $(INSTALL_DATA) $< $@ 160 PREINSTALL_FILES += $(PROJECT_INCLUDE)/clockdrv.h 161 162 $(PROJECT_INCLUDE)/iosupp.h: include/iosupp.h 163 $(INSTALL_DATA) $< $@ 164 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iosupp.h 165 166 $(PROJECT_INCLUDE)/ringbuf.h: include/ringbuf.h 167 $(INSTALL_DATA) $< $@ 168 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ringbuf.h 169 170 $(PROJECT_INCLUDE)/rtc.h: include/rtc.h 171 $(INSTALL_DATA) $< $@ 172 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtc.h 173 174 $(PROJECT_INCLUDE)/spurious.h: include/spurious.h 175 $(INSTALL_DATA) $< $@ 176 PREINSTALL_FILES += $(PROJECT_INCLUDE)/spurious.h 177 178 $(PROJECT_INCLUDE)/timerdrv.h: include/timerdrv.h 179 $(INSTALL_DATA) $< $@ 180 PREINSTALL_FILES += $(PROJECT_INCLUDE)/timerdrv.h 181 182 $(PROJECT_INCLUDE)/vmeintr.h: include/vmeintr.h 183 $(INSTALL_DATA) $< $@ 184 PREINSTALL_FILES += $(PROJECT_INCLUDE)/vmeintr.h 185 186 if NEED_STDINT_H 187 $(PROJECT_INCLUDE)/stdint.h: include/stdint.h 188 $(INSTALL_DATA) $< $@ 189 PREINSTALL_FILES += $(PROJECT_INCLUDE)/stdint.h 190 endif 191 192 if NEED_INTTYPES_H 193 $(PROJECT_INCLUDE)/inttypes.h: include/inttypes.h 194 $(INSTALL_DATA) $< $@ 195 PREINSTALL_FILES += $(PROJECT_INCLUDE)/inttypes.h 196 endif 197 198 $(PROJECT_INCLUDE)/motorola: 199 @$(mkinstalldirs) $(PROJECT_INCLUDE)/motorola 200 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola 201 202 $(PROJECT_INCLUDE)/motorola/mc68230.h: include/motorola/mc68230.h 203 $(INSTALL_DATA) $< $@ 204 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/mc68230.h 205 206 $(PROJECT_INCLUDE)/motorola/mc68681.h: include/motorola/mc68681.h 207 $(INSTALL_DATA) $< $@ 208 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/mc68681.h 209 210 $(PROJECT_INCLUDE)/rtems: 211 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 212 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 213 214 $(PROJECT_INCLUDE)/rtems/assoc.h: include/rtems/assoc.h 215 $(INSTALL_DATA) $< $@ 216 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/assoc.h 217 218 $(PROJECT_INCLUDE)/rtems/error.h: include/rtems/error.h 219 $(INSTALL_DATA) $< $@ 220 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/error.h 221 222 $(PROJECT_INCLUDE)/rtems/libcsupport.h: include/rtems/libcsupport.h 223 $(INSTALL_DATA) $< $@ 224 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libcsupport.h 225 226 $(PROJECT_INCLUDE)/rtems/libio.h: include/rtems/libio.h 227 $(INSTALL_DATA) $< $@ 228 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libio.h 229 230 $(PROJECT_INCLUDE)/rtems/libio_.h: include/rtems/libio_.h 231 $(INSTALL_DATA) $< $@ 232 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libio_.h 233 234 $(PROJECT_INCLUDE)/rtems/termiostypes.h: include/rtems/termiostypes.h 235 $(INSTALL_DATA) $< $@ 236 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/termiostypes.h 237 238 $(PROJECT_INCLUDE)/rtems/cdefs.h: include/rtems/cdefs.h 239 $(INSTALL_DATA) $< $@ 240 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/cdefs.h 241 242 $(PROJECT_INCLUDE)/sys: 243 @$(mkinstalldirs) $(PROJECT_INCLUDE)/sys 244 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys 245 246 $(PROJECT_INCLUDE)/sys/filio.h: include/sys/filio.h 247 $(INSTALL_DATA) $< $@ 248 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/filio.h 249 250 $(PROJECT_INCLUDE)/sys/ioccom.h: include/sys/ioccom.h 251 $(INSTALL_DATA) $< $@ 252 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ioccom.h 253 254 $(PROJECT_INCLUDE)/sys/ioctl.h: include/sys/ioctl.h 255 $(INSTALL_DATA) $< $@ 256 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ioctl.h 257 258 $(PROJECT_INCLUDE)/sys/sockio.h: include/sys/sockio.h 259 $(INSTALL_DATA) $< $@ 260 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/sockio.h 261 262 $(PROJECT_INCLUDE)/sys/ttycom.h: include/sys/ttycom.h 263 $(INSTALL_DATA) $< $@ 264 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ttycom.h 265 266 if NEWLIB 267 $(PROJECT_INCLUDE)/sys/termios.h: include/sys/termios.h 268 $(INSTALL_DATA) $< $@ 269 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/termios.h 270 271 $(PROJECT_INCLUDE)/sys/utsname.h: include/sys/utsname.h 272 $(INSTALL_DATA) $< $@ 273 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/utsname.h 274 endif 275 276 if NEED_SYS_CDEFS_H 277 $(PROJECT_INCLUDE)/sys/cdefs.h: include/sys/cdefs.h 278 $(INSTALL_DATA) $< $@ 279 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/cdefs.h 280 endif 281 282 $(PROJECT_INCLUDE)/zilog: 283 @$(mkinstalldirs) $(PROJECT_INCLUDE)/zilog 284 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog 285 286 $(PROJECT_INCLUDE)/zilog/z8036.h: include/zilog/z8036.h 287 $(INSTALL_DATA) $< $@ 288 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8036.h 289 290 $(PROJECT_INCLUDE)/zilog/z8530.h: include/zilog/z8530.h 291 $(INSTALL_DATA) $< $@ 292 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8530.h 293 294 $(PROJECT_INCLUDE)/zilog/z8536.h: include/zilog/z8536.h 295 $(INSTALL_DATA) $< $@ 296 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8536.h 297 184 298 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.