Changeset 9e7e53bf in rtems
- Timestamp:
- Nov 30, 2003, 8:01:23 AM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3450adc
- Parents:
- 74c77c5
- Location:
- cpukit
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libblock/ChangeLog
r74c77c5 r9e7e53bf 1 2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add $(dirstamp) to preinstallation rules. 4 1 5 2003-11-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/libblock/Makefile.am
r74c77c5 r9e7e53bf 33 33 PREINSTALL_FILES = 34 34 35 $(PROJECT_INCLUDE)/rtems :35 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 36 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 37 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 38 39 39 $(PROJECT_INCLUDE)/rtems/bdbuf.h: include/rtems/bdbuf.h 40 $(INSTALL_DATA) $< $ @40 $(PROJECT_INCLUDE)/rtems/bdbuf.h: include/rtems/bdbuf.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 41 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/bdbuf.h 41 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bdbuf.h 42 43 43 $(PROJECT_INCLUDE)/rtems/blkdev.h: include/rtems/blkdev.h 44 $(INSTALL_DATA) $< $ @44 $(PROJECT_INCLUDE)/rtems/blkdev.h: include/rtems/blkdev.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 45 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/blkdev.h 45 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/blkdev.h 46 47 47 $(PROJECT_INCLUDE)/rtems/diskdevs.h: include/rtems/diskdevs.h 48 $(INSTALL_DATA) $< $ @48 $(PROJECT_INCLUDE)/rtems/diskdevs.h: include/rtems/diskdevs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 49 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/diskdevs.h 49 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/diskdevs.h 50 51 51 $(PROJECT_INCLUDE)/rtems/ramdisk.h: include/rtems/ramdisk.h 52 $(INSTALL_DATA) $< $ @52 $(PROJECT_INCLUDE)/rtems/ramdisk.h: include/rtems/ramdisk.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 53 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ramdisk.h 53 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ramdisk.h 54 55 55 $(PROJECT_INCLUDE)/rtems/ide_part_table.h: include/rtems/ide_part_table.h 56 $(INSTALL_DATA) $< $ @56 $(PROJECT_INCLUDE)/rtems/ide_part_table.h: include/rtems/ide_part_table.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 57 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ide_part_table.h 57 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ide_part_table.h 58 59 -
cpukit/libcsupport/ChangeLog
r74c77c5 r9e7e53bf 1 2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add $(dirstamp) to preinstallation rules. 4 1 5 2003-11-26 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/libcsupport/Makefile.am
r74c77c5 r9e7e53bf 148 148 PREINSTALL_FILES = 149 149 150 $(PROJECT_INCLUDE)/chain.h: include/chain.h 151 $(INSTALL_DATA) $< $@ 150 $(PROJECT_INCLUDE)/$(dirstamp): 151 @$(mkinstalldirs) $(PROJECT_INCLUDE) 152 @: > $(PROJECT_INCLUDE)/$(dirstamp) 153 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 154 155 $(PROJECT_INCLUDE)/chain.h: include/chain.h $(PROJECT_INCLUDE)/$(dirstamp) 156 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/chain.h 152 157 PREINSTALL_FILES += $(PROJECT_INCLUDE)/chain.h 153 158 154 $(PROJECT_INCLUDE)/console.h: include/console.h 155 $(INSTALL_DATA) $< $ @159 $(PROJECT_INCLUDE)/console.h: include/console.h $(PROJECT_INCLUDE)/$(dirstamp) 160 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/console.h 156 161 PREINSTALL_FILES += $(PROJECT_INCLUDE)/console.h 157 162 158 $(PROJECT_INCLUDE)/clockdrv.h: include/clockdrv.h 159 $(INSTALL_DATA) $< $ @163 $(PROJECT_INCLUDE)/clockdrv.h: include/clockdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 164 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/clockdrv.h 160 165 PREINSTALL_FILES += $(PROJECT_INCLUDE)/clockdrv.h 161 166 162 $(PROJECT_INCLUDE)/iosupp.h: include/iosupp.h 163 $(INSTALL_DATA) $< $ @167 $(PROJECT_INCLUDE)/iosupp.h: include/iosupp.h $(PROJECT_INCLUDE)/$(dirstamp) 168 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/iosupp.h 164 169 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iosupp.h 165 170 166 $(PROJECT_INCLUDE)/ringbuf.h: include/ringbuf.h 167 $(INSTALL_DATA) $< $ @171 $(PROJECT_INCLUDE)/ringbuf.h: include/ringbuf.h $(PROJECT_INCLUDE)/$(dirstamp) 172 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ringbuf.h 168 173 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ringbuf.h 169 174 170 $(PROJECT_INCLUDE)/rtc.h: include/rtc.h 171 $(INSTALL_DATA) $< $ @175 $(PROJECT_INCLUDE)/rtc.h: include/rtc.h $(PROJECT_INCLUDE)/$(dirstamp) 176 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtc.h 172 177 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtc.h 173 178 174 $(PROJECT_INCLUDE)/spurious.h: include/spurious.h 175 $(INSTALL_DATA) $< $ @179 $(PROJECT_INCLUDE)/spurious.h: include/spurious.h $(PROJECT_INCLUDE)/$(dirstamp) 180 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/spurious.h 176 181 PREINSTALL_FILES += $(PROJECT_INCLUDE)/spurious.h 177 182 178 $(PROJECT_INCLUDE)/timerdrv.h: include/timerdrv.h 179 $(INSTALL_DATA) $< $ @183 $(PROJECT_INCLUDE)/timerdrv.h: include/timerdrv.h $(PROJECT_INCLUDE)/$(dirstamp) 184 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/timerdrv.h 180 185 PREINSTALL_FILES += $(PROJECT_INCLUDE)/timerdrv.h 181 186 182 $(PROJECT_INCLUDE)/vmeintr.h: include/vmeintr.h 183 $(INSTALL_DATA) $< $ @187 $(PROJECT_INCLUDE)/vmeintr.h: include/vmeintr.h $(PROJECT_INCLUDE)/$(dirstamp) 188 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/vmeintr.h 184 189 PREINSTALL_FILES += $(PROJECT_INCLUDE)/vmeintr.h 185 190 186 191 if NEED_STDINT_H 187 $(PROJECT_INCLUDE)/stdint.h: include/stdint.h 188 $(INSTALL_DATA) $< $ @192 $(PROJECT_INCLUDE)/stdint.h: include/stdint.h $(PROJECT_INCLUDE)/$(dirstamp) 193 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/stdint.h 189 194 PREINSTALL_FILES += $(PROJECT_INCLUDE)/stdint.h 190 195 endif 191 196 192 197 if NEED_INTTYPES_H 193 $(PROJECT_INCLUDE)/inttypes.h: include/inttypes.h 194 $(INSTALL_DATA) $< $ @198 $(PROJECT_INCLUDE)/inttypes.h: include/inttypes.h $(PROJECT_INCLUDE)/$(dirstamp) 199 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/inttypes.h 195 200 PREINSTALL_FILES += $(PROJECT_INCLUDE)/inttypes.h 196 201 endif 197 202 198 $(PROJECT_INCLUDE)/motorola :203 $(PROJECT_INCLUDE)/motorola/$(dirstamp): 199 204 @$(mkinstalldirs) $(PROJECT_INCLUDE)/motorola 200 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola 201 202 $(PROJECT_INCLUDE)/motorola/mc68230.h: include/motorola/mc68230.h 203 $(INSTALL_DATA) $< $@ 205 @: > $(PROJECT_INCLUDE)/motorola/$(dirstamp) 206 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/$(dirstamp) 207 208 $(PROJECT_INCLUDE)/motorola/mc68230.h: include/motorola/mc68230.h $(PROJECT_INCLUDE)/motorola/$(dirstamp) 209 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/motorola/mc68230.h 204 210 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/mc68230.h 205 211 206 $(PROJECT_INCLUDE)/motorola/mc68681.h: include/motorola/mc68681.h 207 $(INSTALL_DATA) $< $ @212 $(PROJECT_INCLUDE)/motorola/mc68681.h: include/motorola/mc68681.h $(PROJECT_INCLUDE)/motorola/$(dirstamp) 213 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/motorola/mc68681.h 208 214 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola/mc68681.h 209 215 210 $(PROJECT_INCLUDE)/rtems :216 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 211 217 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 212 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 213 214 $(PROJECT_INCLUDE)/rtems/assoc.h: include/rtems/assoc.h 215 $(INSTALL_DATA) $< $@ 218 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 219 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 220 221 $(PROJECT_INCLUDE)/rtems/assoc.h: include/rtems/assoc.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 222 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/assoc.h 216 223 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/assoc.h 217 224 218 $(PROJECT_INCLUDE)/rtems/error.h: include/rtems/error.h 219 $(INSTALL_DATA) $< $ @225 $(PROJECT_INCLUDE)/rtems/error.h: include/rtems/error.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 226 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/error.h 220 227 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/error.h 221 228 222 $(PROJECT_INCLUDE)/rtems/libcsupport.h: include/rtems/libcsupport.h 223 $(INSTALL_DATA) $< $ @229 $(PROJECT_INCLUDE)/rtems/libcsupport.h: include/rtems/libcsupport.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 230 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/libcsupport.h 224 231 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libcsupport.h 225 232 226 $(PROJECT_INCLUDE)/rtems/libio.h: include/rtems/libio.h 227 $(INSTALL_DATA) $< $ @233 $(PROJECT_INCLUDE)/rtems/libio.h: include/rtems/libio.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 234 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/libio.h 228 235 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libio.h 229 236 230 $(PROJECT_INCLUDE)/rtems/libio_.h: include/rtems/libio_.h 231 $(INSTALL_DATA) $< $ @237 $(PROJECT_INCLUDE)/rtems/libio_.h: include/rtems/libio_.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 238 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/libio_.h 232 239 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/libio_.h 233 240 234 $(PROJECT_INCLUDE)/rtems/termiostypes.h: include/rtems/termiostypes.h 235 $(INSTALL_DATA) $< $ @241 $(PROJECT_INCLUDE)/rtems/termiostypes.h: include/rtems/termiostypes.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 242 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/termiostypes.h 236 243 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/termiostypes.h 237 244 238 $(PROJECT_INCLUDE)/rtems/cdefs.h: include/rtems/cdefs.h 239 $(INSTALL_DATA) $< $ @245 $(PROJECT_INCLUDE)/rtems/cdefs.h: include/rtems/cdefs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 246 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/cdefs.h 240 247 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/cdefs.h 241 248 242 $(PROJECT_INCLUDE)/sys :249 $(PROJECT_INCLUDE)/sys/$(dirstamp): 243 250 @$(mkinstalldirs) $(PROJECT_INCLUDE)/sys 244 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys 245 246 $(PROJECT_INCLUDE)/sys/filio.h: include/sys/filio.h 247 $(INSTALL_DATA) $< $@ 251 @: > $(PROJECT_INCLUDE)/sys/$(dirstamp) 252 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/$(dirstamp) 253 254 $(PROJECT_INCLUDE)/sys/filio.h: include/sys/filio.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 255 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/filio.h 248 256 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/filio.h 249 257 250 $(PROJECT_INCLUDE)/sys/ioccom.h: include/sys/ioccom.h 251 $(INSTALL_DATA) $< $ @258 $(PROJECT_INCLUDE)/sys/ioccom.h: include/sys/ioccom.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 259 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/ioccom.h 252 260 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ioccom.h 253 261 254 $(PROJECT_INCLUDE)/sys/ioctl.h: include/sys/ioctl.h 255 $(INSTALL_DATA) $< $ @262 $(PROJECT_INCLUDE)/sys/ioctl.h: include/sys/ioctl.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 263 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/ioctl.h 256 264 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ioctl.h 257 265 258 $(PROJECT_INCLUDE)/sys/sockio.h: include/sys/sockio.h 259 $(INSTALL_DATA) $< $ @266 $(PROJECT_INCLUDE)/sys/sockio.h: include/sys/sockio.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 267 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/sockio.h 260 268 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/sockio.h 261 269 262 $(PROJECT_INCLUDE)/sys/ttycom.h: include/sys/ttycom.h 263 $(INSTALL_DATA) $< $ @270 $(PROJECT_INCLUDE)/sys/ttycom.h: include/sys/ttycom.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 271 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/ttycom.h 264 272 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/ttycom.h 265 273 266 274 if NEWLIB 267 $(PROJECT_INCLUDE)/sys/termios.h: include/sys/termios.h 268 $(INSTALL_DATA) $< $ @275 $(PROJECT_INCLUDE)/sys/termios.h: include/sys/termios.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 276 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/termios.h 269 277 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/termios.h 270 278 271 $(PROJECT_INCLUDE)/sys/utsname.h: include/sys/utsname.h 272 $(INSTALL_DATA) $< $ @279 $(PROJECT_INCLUDE)/sys/utsname.h: include/sys/utsname.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 280 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/utsname.h 273 281 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/utsname.h 274 282 endif 275 283 276 284 if NEED_SYS_CDEFS_H 277 $(PROJECT_INCLUDE)/sys/cdefs.h: include/sys/cdefs.h 278 $(INSTALL_DATA) $< $ @285 $(PROJECT_INCLUDE)/sys/cdefs.h: include/sys/cdefs.h $(PROJECT_INCLUDE)/sys/$(dirstamp) 286 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/sys/cdefs.h 279 287 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys/cdefs.h 280 288 endif 281 289 282 $(PROJECT_INCLUDE)/zilog :290 $(PROJECT_INCLUDE)/zilog/$(dirstamp): 283 291 @$(mkinstalldirs) $(PROJECT_INCLUDE)/zilog 284 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog 285 286 $(PROJECT_INCLUDE)/zilog/z8036.h: include/zilog/z8036.h 287 $(INSTALL_DATA) $< $@ 292 @: > $(PROJECT_INCLUDE)/zilog/$(dirstamp) 293 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/$(dirstamp) 294 295 $(PROJECT_INCLUDE)/zilog/z8036.h: include/zilog/z8036.h $(PROJECT_INCLUDE)/zilog/$(dirstamp) 296 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/zilog/z8036.h 288 297 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8036.h 289 298 290 $(PROJECT_INCLUDE)/zilog/z8530.h: include/zilog/z8530.h 291 $(INSTALL_DATA) $< $ @299 $(PROJECT_INCLUDE)/zilog/z8530.h: include/zilog/z8530.h $(PROJECT_INCLUDE)/zilog/$(dirstamp) 300 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/zilog/z8530.h 292 301 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8530.h 293 302 294 $(PROJECT_INCLUDE)/zilog/z8536.h: include/zilog/z8536.h 295 $(INSTALL_DATA) $< $ @303 $(PROJECT_INCLUDE)/zilog/z8536.h: include/zilog/z8536.h $(PROJECT_INCLUDE)/zilog/$(dirstamp) 304 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/zilog/z8536.h 296 305 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog/z8536.h 297 306 -
cpukit/libfs/ChangeLog
r74c77c5 r9e7e53bf 1 2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add $(dirstamp) to preinstallation rules. 4 1 5 2003-11-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/libfs/Makefile.am
r74c77c5 r9e7e53bf 90 90 EXTRA_DIST += $(libdosfs_DOSFS_C_FILES) $(libdosfs_FATFS_C_FILES) 91 91 92 CLEANDIRS += src92 CLEANDIRS = src 93 93 94 94 # --- … … 96 96 PREINSTALL_FILES = 97 97 98 $(PROJECT_INCLUDE)/imfs.h: src/imfs/imfs.h 99 $(INSTALL_DATA) $< $@ 98 $(PROJECT_INCLUDE)/$(dirstamp): 99 @$(mkinstalldirs) $(PROJECT_INCLUDE) 100 @: > $(PROJECT_INCLUDE)/$(dirstamp) 101 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 102 103 $(PROJECT_INCLUDE)/imfs.h: src/imfs/imfs.h $(PROJECT_INCLUDE)/$(dirstamp) 104 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/imfs.h 100 105 PREINSTALL_FILES += $(PROJECT_INCLUDE)/imfs.h 101 106 102 107 if !UNIX 103 $(PROJECT_INCLUDE)/dosfs.h: src/dosfs/dosfs.h 104 $(INSTALL_DATA) $< $ @108 $(PROJECT_INCLUDE)/dosfs.h: src/dosfs/dosfs.h $(PROJECT_INCLUDE)/$(dirstamp) 109 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/dosfs.h 105 110 PREINSTALL_FILES += $(PROJECT_INCLUDE)/dosfs.h 106 111 endif -
cpukit/libmisc/ChangeLog
r74c77c5 r9e7e53bf 1 2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add $(dirstamp) to preinstallation rules. 4 1 5 2003-11-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/libmisc/Makefile.am
r74c77c5 r9e7e53bf 294 294 PREINSTALL_FILES = 295 295 296 $(PROJECT_INCLUDE)/rtems: 296 $(PROJECT_INCLUDE)/$(dirstamp): 297 @$(mkinstalldirs) $(PROJECT_INCLUDE) 298 @: > $(PROJECT_INCLUDE)/$(dirstamp) 299 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 300 301 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 297 302 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 298 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 299 300 $(PROJECT_INCLUDE)/rtems/capture.h: capture/capture.h 301 $(INSTALL_DATA) $< $@ 303 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 304 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 305 306 $(PROJECT_INCLUDE)/rtems/capture.h: capture/capture.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 307 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/capture.h 302 308 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/capture.h 303 309 304 $(PROJECT_INCLUDE)/rtems/capture-cli.h: capture/capture-cli.h 305 $(INSTALL_DATA) $< $ @310 $(PROJECT_INCLUDE)/rtems/capture-cli.h: capture/capture-cli.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 311 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/capture-cli.h 306 312 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/capture-cli.h 307 313 308 $(PROJECT_INCLUDE)/rtems/cpuuse.h: cpuuse/cpuuse.h 309 $(INSTALL_DATA) $< $ @314 $(PROJECT_INCLUDE)/rtems/cpuuse.h: cpuuse/cpuuse.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 315 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/cpuuse.h 310 316 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/cpuuse.h 311 317 312 $(PROJECT_INCLUDE)/rtems/devnull.h: devnull/devnull.h 313 $(INSTALL_DATA) $< $ @318 $(PROJECT_INCLUDE)/rtems/devnull.h: devnull/devnull.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 319 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/devnull.h 314 320 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/devnull.h 315 321 316 $(PROJECT_INCLUDE)/rtems/dumpbuf.h: dumpbuf/dumpbuf.h 317 $(INSTALL_DATA) $< $ @322 $(PROJECT_INCLUDE)/rtems/dumpbuf.h: dumpbuf/dumpbuf.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 323 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/dumpbuf.h 318 324 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/dumpbuf.h 319 325 320 $(PROJECT_INCLUDE)/rtems/monitor.h: monitor/monitor.h 321 $(INSTALL_DATA) $< $ @326 $(PROJECT_INCLUDE)/rtems/monitor.h: monitor/monitor.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 327 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/monitor.h 322 328 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/monitor.h 323 329 324 $(PROJECT_INCLUDE)/rtems/mw_fb.h: mw-fb/mw_fb.h 325 $(INSTALL_DATA) $< $ @330 $(PROJECT_INCLUDE)/rtems/mw_fb.h: mw-fb/mw_fb.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 331 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/mw_fb.h 326 332 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mw_fb.h 327 333 328 $(PROJECT_INCLUDE)/rtems/mw_uid.h: mw-fb/mw_uid.h 329 $(INSTALL_DATA) $< $ @334 $(PROJECT_INCLUDE)/rtems/mw_uid.h: mw-fb/mw_uid.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 335 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/mw_uid.h 330 336 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mw_uid.h 331 337 332 338 if LIBSHELL 333 $(PROJECT_INCLUDE)/rtems/shell.h: shell/shell.h 334 $(INSTALL_DATA) $< $ @339 $(PROJECT_INCLUDE)/rtems/shell.h: shell/shell.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 340 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/shell.h 335 341 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/shell.h 336 342 endif 337 343 338 $(PROJECT_INCLUDE)/rtems/rtmonuse.h: rtmonuse/rtmonuse.h 339 $(INSTALL_DATA) $< $ @344 $(PROJECT_INCLUDE)/rtems/rtmonuse.h: rtmonuse/rtmonuse.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 345 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/rtmonuse.h 340 346 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/rtmonuse.h 341 347 342 348 if LIBSERDBG 343 $(PROJECT_INCLUDE)/serdbgcnf.h: serdbg/serdbgcnf.h 344 $(INSTALL_DATA) $< $ @349 $(PROJECT_INCLUDE)/serdbgcnf.h: serdbg/serdbgcnf.h $(PROJECT_INCLUDE)/$(dirstamp) 350 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/serdbgcnf.h 345 351 PREINSTALL_FILES += $(PROJECT_INCLUDE)/serdbgcnf.h 346 352 347 $(PROJECT_INCLUDE)/serdbg.h: serdbg/serdbg.h 348 $(INSTALL_DATA) $< $ @353 $(PROJECT_INCLUDE)/serdbg.h: serdbg/serdbg.h $(PROJECT_INCLUDE)/$(dirstamp) 354 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/serdbg.h 349 355 PREINSTALL_FILES += $(PROJECT_INCLUDE)/serdbg.h 350 356 351 $(PROJECT_INCLUDE)/termios_printk_cnf.h: serdbg/termios_printk_cnf.h 352 $(INSTALL_DATA) $< $ @357 $(PROJECT_INCLUDE)/termios_printk_cnf.h: serdbg/termios_printk_cnf.h $(PROJECT_INCLUDE)/$(dirstamp) 358 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/termios_printk_cnf.h 353 359 PREINSTALL_FILES += $(PROJECT_INCLUDE)/termios_printk_cnf.h 354 360 355 $(PROJECT_INCLUDE)/termios_printk.h: serdbg/termios_printk.h 356 $(INSTALL_DATA) $< $ @361 $(PROJECT_INCLUDE)/termios_printk.h: serdbg/termios_printk.h $(PROJECT_INCLUDE)/$(dirstamp) 362 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/termios_printk.h 357 363 PREINSTALL_FILES += $(PROJECT_INCLUDE)/termios_printk.h 358 364 endif 359 365 360 $(PROJECT_INCLUDE)/rtems/stackchk.h: stackchk/stackchk.h 361 $(INSTALL_DATA) $< $ @366 $(PROJECT_INCLUDE)/rtems/stackchk.h: stackchk/stackchk.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 367 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/stackchk.h 362 368 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/stackchk.h 363 369 364 $(PROJECT_INCLUDE)/rtems/untar.h: untar/untar.h 365 $(INSTALL_DATA) $< $ @370 $(PROJECT_INCLUDE)/rtems/untar.h: untar/untar.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 371 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/untar.h 366 372 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/untar.h 367 373 368 $(PROJECT_INCLUDE)/rtems/fsmount.h: fsmount/fsmount.h 369 $(INSTALL_DATA) $< $ @374 $(PROJECT_INCLUDE)/rtems/fsmount.h: fsmount/fsmount.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 375 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/fsmount.h 370 376 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fsmount.h 371 377 -
cpukit/librpc/ChangeLog
r74c77c5 r9e7e53bf 1 2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add $(dirstamp) to preinstallation rules. 4 1 5 2003-11-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/librpc/Makefile.am
r74c77c5 r9e7e53bf 94 94 src/rpc/PSD.doc/rpc.rfc.ms src/rpc/PSD.doc/rpcgen.ms \ 95 95 src/rpc/PSD.doc/xdr.nts.ms src/rpc/PSD.doc/xdr.rfc.ms 96 97 96 endif 98 97 … … 100 99 101 100 if LIBRPC 102 $(PROJECT_INCLUDE)/rpc :101 $(PROJECT_INCLUDE)/rpc/$(dirstamp): 103 102 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rpc 104 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc 103 @: > $(PROJECT_INCLUDE)/rpc/$(dirstamp) 104 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/$(dirstamp) 105 105 106 $(PROJECT_INCLUDE)/rpc/auth.h: include/rpc/auth.h 107 $(INSTALL_DATA) $< $ @106 $(PROJECT_INCLUDE)/rpc/auth.h: include/rpc/auth.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 107 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/auth.h 108 108 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/auth.h 109 109 110 $(PROJECT_INCLUDE)/rpc/auth_des.h: include/rpc/auth_des.h 111 $(INSTALL_DATA) $< $ @110 $(PROJECT_INCLUDE)/rpc/auth_des.h: include/rpc/auth_des.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 111 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/auth_des.h 112 112 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/auth_des.h 113 113 114 $(PROJECT_INCLUDE)/rpc/auth_unix.h: include/rpc/auth_unix.h 115 $(INSTALL_DATA) $< $ @114 $(PROJECT_INCLUDE)/rpc/auth_unix.h: include/rpc/auth_unix.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 115 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/auth_unix.h 116 116 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/auth_unix.h 117 117 118 $(PROJECT_INCLUDE)/rpc/clnt.h: include/rpc/clnt.h 119 $(INSTALL_DATA) $< $ @118 $(PROJECT_INCLUDE)/rpc/clnt.h: include/rpc/clnt.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 119 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/clnt.h 120 120 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/clnt.h 121 121 122 $(PROJECT_INCLUDE)/rpc/des.h: include/rpc/des.h 123 $(INSTALL_DATA) $< $ @122 $(PROJECT_INCLUDE)/rpc/des.h: include/rpc/des.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 123 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/des.h 124 124 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/des.h 125 125 126 $(PROJECT_INCLUDE)/rpc/des_crypt.h: include/rpc/des_crypt.h 127 $(INSTALL_DATA) $< $ @126 $(PROJECT_INCLUDE)/rpc/des_crypt.h: include/rpc/des_crypt.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 127 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/des_crypt.h 128 128 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/des_crypt.h 129 129 130 $(PROJECT_INCLUDE)/rpc/pmap_clnt.h: include/rpc/pmap_clnt.h 131 $(INSTALL_DATA) $< $ @130 $(PROJECT_INCLUDE)/rpc/pmap_clnt.h: include/rpc/pmap_clnt.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 131 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/pmap_clnt.h 132 132 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/pmap_clnt.h 133 133 134 $(PROJECT_INCLUDE)/rpc/pmap_prot.h: include/rpc/pmap_prot.h 135 $(INSTALL_DATA) $< $ @134 $(PROJECT_INCLUDE)/rpc/pmap_prot.h: include/rpc/pmap_prot.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 135 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/pmap_prot.h 136 136 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/pmap_prot.h 137 137 138 $(PROJECT_INCLUDE)/rpc/pmap_rmt.h: include/rpc/pmap_rmt.h 139 $(INSTALL_DATA) $< $ @138 $(PROJECT_INCLUDE)/rpc/pmap_rmt.h: include/rpc/pmap_rmt.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 139 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/pmap_rmt.h 140 140 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/pmap_rmt.h 141 141 142 $(PROJECT_INCLUDE)/rpc/rpc.h: include/rpc/rpc.h 143 $(INSTALL_DATA) $< $ @142 $(PROJECT_INCLUDE)/rpc/rpc.h: include/rpc/rpc.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 143 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/rpc.h 144 144 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/rpc.h 145 145 146 $(PROJECT_INCLUDE)/rpc/rpc_com.h: include/rpc/rpc_com.h 147 $(INSTALL_DATA) $< $ @146 $(PROJECT_INCLUDE)/rpc/rpc_com.h: include/rpc/rpc_com.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 147 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/rpc_com.h 148 148 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/rpc_com.h 149 149 150 $(PROJECT_INCLUDE)/rpc/rpc_msg.h: include/rpc/rpc_msg.h 151 $(INSTALL_DATA) $< $ @150 $(PROJECT_INCLUDE)/rpc/rpc_msg.h: include/rpc/rpc_msg.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 151 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/rpc_msg.h 152 152 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/rpc_msg.h 153 153 154 $(PROJECT_INCLUDE)/rpc/svc.h: include/rpc/svc.h 155 $(INSTALL_DATA) $< $ @154 $(PROJECT_INCLUDE)/rpc/svc.h: include/rpc/svc.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 155 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/svc.h 156 156 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/svc.h 157 157 158 $(PROJECT_INCLUDE)/rpc/svc_auth.h: include/rpc/svc_auth.h 159 $(INSTALL_DATA) $< $ @158 $(PROJECT_INCLUDE)/rpc/svc_auth.h: include/rpc/svc_auth.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 159 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/svc_auth.h 160 160 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/svc_auth.h 161 161 162 $(PROJECT_INCLUDE)/rpc/types.h: include/rpc/types.h 163 $(INSTALL_DATA) $< $ @162 $(PROJECT_INCLUDE)/rpc/types.h: include/rpc/types.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 163 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/types.h 164 164 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/types.h 165 165 166 $(PROJECT_INCLUDE)/rpc/xdr.h: include/rpc/xdr.h 167 $(INSTALL_DATA) $< $ @166 $(PROJECT_INCLUDE)/rpc/xdr.h: include/rpc/xdr.h $(PROJECT_INCLUDE)/rpc/$(dirstamp) 167 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rpc/xdr.h 168 168 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rpc/xdr.h 169 169
Note: See TracChangeset
for help on using the changeset viewer.