Changeset f2954e0c in rtems
- Timestamp:
- 11/22/03 12:51:28 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 51f97de
- Parents:
- 7987c2a
- Location:
- cpukit/libblock
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libblock/ChangeLog
r7987c2a rf2954e0c 1 2003-11-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reworked. 4 1 5 2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/libblock/Makefile.am
r7987c2a rf2954e0c 9 9 include_rtemsdir = $(includedir)/rtems 10 10 11 $(PROJECT_INCLUDE)/%.h: include/%.h 12 $(INSTALL_DATA) $< $@ 13 14 $(PROJECT_INCLUDE)/rtems: 15 @$(mkinstalldirs) $@ 16 17 include_rtems_HEADERS = \ 18 include/rtems/bdbuf.h include/rtems/blkdev.h \ 11 include_rtems_HEADERS = include/rtems/bdbuf.h include/rtems/blkdev.h \ 19 12 include/rtems/diskdevs.h include/rtems/ramdisk.h \ 20 13 include/rtems/ide_part_table.h 21 14 22 PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \23 $(include_rtems_HEADERS:include/%=$(PROJECT_INCLUDE)/%)24 25 15 LIB = ${ARCH}/libblock.a 26 16 27 C_FILES = src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c \28 17 C_FILES = src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c \ 18 src/ide_part_table.c 29 19 30 20 OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT)) … … 41 31 all-local: $(PREINSTALL_FILES) ${ARCH} $(LIB) 42 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/rtems: 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems 38 39 $(PROJECT_INCLUDE)/rtems/bdbuf.h: include/rtems/bdbuf.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bdbuf.h 42 43 $(PROJECT_INCLUDE)/rtems/blkdev.h: include/rtems/blkdev.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/blkdev.h 46 47 $(PROJECT_INCLUDE)/rtems/diskdevs.h: include/rtems/diskdevs.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/diskdevs.h 50 51 $(PROJECT_INCLUDE)/rtems/ramdisk.h: include/rtems/ramdisk.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ramdisk.h 54 55 $(PROJECT_INCLUDE)/rtems/ide_part_table.h: include/rtems/ide_part_table.h 56 $(INSTALL_DATA) $< $@ 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ide_part_table.h 58 43 59 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.