Changeset d6a444d in rtems
- Timestamp:
- 11/23/03 10:36:05 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8f83131
- Parents:
- 8b273c2
- Location:
- cpukit/score/cpu
- Files:
-
- 28 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/arm/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/arm/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/cpu_asm.h \ 30 rtems/score/arm.h \ 31 rtems/score/types.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/cpu_asm.h \ 15 rtems/score/arm.h rtems/score/types.h 34 16 35 17 C_FILES = cpu.c … … 49 31 EXTRA_DIST = cpu.c cpu_asm.S 50 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/rtems/score: 40 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 42 43 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 46 47 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 50 51 $(PROJECT_INCLUDE)/rtems/score/arm.h: rtems/score/arm.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/arm.h 54 55 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 56 $(INSTALL_DATA) $< $@ 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 58 51 59 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/c4x/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/c4x/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h c4xio.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/c4x.h \ 30 rtems/score/types.h \ 31 rtems/score/cpu_asm.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/c4x.h \ 15 rtems/score/types.h rtems/score/cpu_asm.h 34 16 35 17 C_FILES = cpu.c irq.c … … 49 31 EXTRA_DIST = cpu.c irq.c cpu_asm.S 50 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/c4xio.h: c4xio.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/c4xio.h 42 43 $(PROJECT_INCLUDE)/rtems/score: 44 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 46 47 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 50 51 $(PROJECT_INCLUDE)/rtems/score/c4x.h: rtems/score/c4x.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/c4x.h 54 55 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 56 $(INSTALL_DATA) $< $@ 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 58 59 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 60 $(INSTALL_DATA) $< $@ 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 62 51 63 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/h8300/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/h8300/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/h8300.h \ 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/h8300.h \ 30 15 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/rtems/score: 40 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 42 43 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 46 47 $(PROJECT_INCLUDE)/rtems/score/h8300.h: rtems/score/h8300.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/h8300.h 50 51 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 54 50 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/i386/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/i386/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS= asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/i386.h \ 30 rtems/score/types.h \ 31 rtems/score/interrupts.h \ 32 rtems/score/registers.h \ 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/i386.h \ 15 rtems/score/types.h rtems/score/interrupts.h rtems/score/registers.h \ 33 16 rtems/score/idtr.h 34 35 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \36 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)37 17 38 18 LIB = $(ARCH)/libscorecpu.a … … 52 32 EXTRA_DIST = cpu.c cpu_asm.S 53 33 34 PREINSTALL_FILES = 35 36 $(PROJECT_INCLUDE)/asm.h: asm.h 37 $(INSTALL_DATA) $< $@ 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 39 40 $(PROJECT_INCLUDE)/rtems/score: 41 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 43 44 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 45 $(INSTALL_DATA) $< $@ 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 47 48 $(PROJECT_INCLUDE)/rtems/score/i386.h: rtems/score/i386.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i386.h 51 52 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 53 $(INSTALL_DATA) $< $@ 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 55 56 $(PROJECT_INCLUDE)/rtems/score/interrupts.h: rtems/score/interrupts.h 57 $(INSTALL_DATA) $< $@ 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/interrupts.h 59 60 $(PROJECT_INCLUDE)/rtems/score/registers.h: rtems/score/registers.h 61 $(INSTALL_DATA) $< $@ 62 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/registers.h 63 64 $(PROJECT_INCLUDE)/rtems/score/idtr.h: rtems/score/idtr.h 65 $(INSTALL_DATA) $< $@ 66 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/idtr.h 67 54 68 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/i960/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/i960/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/i960.h \ 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/i960.h \ 30 15 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S i960RP.h 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/rtems/score: 40 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 42 43 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 46 47 $(PROJECT_INCLUDE)/rtems/score/i960.h: rtems/score/i960.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i960.h 50 51 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 54 50 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/m68k/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/m68k/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h m68302.h m68360.h qsm.h sim.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/m68k.h \ 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/m68k.h \ 30 15 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/m68302.h: m68302.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/m68302.h 42 43 $(PROJECT_INCLUDE)/m68360.h: m68360.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/m68360.h 46 47 $(PROJECT_INCLUDE)/qsm.h: qsm.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/qsm.h 50 51 $(PROJECT_INCLUDE)/sim.h: sim.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sim.h 54 55 $(PROJECT_INCLUDE)/rtems/score: 56 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 58 59 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 60 $(INSTALL_DATA) $< $@ 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 62 63 $(PROJECT_INCLUDE)/rtems/score/m68k.h: rtems/score/m68k.h 64 $(INSTALL_DATA) $< $@ 65 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/m68k.h 66 67 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 68 $(INSTALL_DATA) $< $@ 69 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 70 50 71 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/mips/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/mips/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h idtcpu.h iregdef.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/mips.h \ 30 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips.h \ 15 rtems/score/types.h 33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/idtcpu.h: idtcpu.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtcpu.h 42 43 $(PROJECT_INCLUDE)/iregdef.h: iregdef.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h 46 47 $(PROJECT_INCLUDE)/rtems/score: 48 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 50 51 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 54 55 $(PROJECT_INCLUDE)/rtems/score/mips.h: rtems/score/mips.h 56 $(INSTALL_DATA) $< $@ 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/mips.h 58 59 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 60 $(INSTALL_DATA) $< $@ 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 62 50 63 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/mips64orion/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/mips64orion/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h cpu_asm.h idtcpu.h idtmon.h iregdef.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/mips64orion.h \ 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips64orion.h \ 30 15 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/cpu_asm.h: cpu_asm.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/cpu_asm.h 42 43 $(PROJECT_INCLUDE)/idtcpu.h: idtcpu.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtcpu.h 46 47 $(PROJECT_INCLUDE)/idtmon.h: idtmon.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtmon.h 50 51 $(PROJECT_INCLUDE)/iregdef.h: iregdef.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h 54 55 $(PROJECT_INCLUDE)/rtems/score: 56 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 58 59 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 60 $(INSTALL_DATA) $< $@ 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 62 63 $(PROJECT_INCLUDE)/rtems/score/mips64orion.h: rtems/score/mips64orion.h 64 $(INSTALL_DATA) $< $@ 65 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/mips64orion.h 66 67 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 68 $(INSTALL_DATA) $< $@ 69 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 70 50 71 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/no_cpu/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/no_cpu/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/no_cpu.h \ 30 rtems/score/cpu_asm.h \ 31 rtems/score/types.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/no_cpu.h \ 15 rtems/score/cpu_asm.h rtems/score/types.h 34 16 35 17 C_FILES = cpu.c cpu_asm.c … … 46 28 EXTRA_DIST = cpu.c cpu_asm.c 47 29 30 PREINSTALL_FILES = 31 32 $(PROJECT_INCLUDE)/asm.h: asm.h 33 $(INSTALL_DATA) $< $@ 34 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 35 36 $(PROJECT_INCLUDE)/rtems/score: 37 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 39 40 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 41 $(INSTALL_DATA) $< $@ 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 43 44 $(PROJECT_INCLUDE)/rtems/score/no_cpu.h: rtems/score/no_cpu.h 45 $(INSTALL_DATA) $< $@ 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/no_cpu.h 47 48 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 51 52 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 53 $(INSTALL_DATA) $< $@ 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 55 48 56 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/or32/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/or32/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS= asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/types.h \ 30 rtems/score/or32.h \ 31 rtems/score/cpu_asm.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/types.h \ 15 rtems/score/or32.h rtems/score/cpu_asm.h 34 16 35 17 C_FILES = cpu.c cpu_asm.c … … 46 28 EXTRA_DIST = cpu.c cpu_asm.c 47 29 30 PREINSTALL_FILES = 31 32 $(PROJECT_INCLUDE)/asm.h: asm.h 33 $(INSTALL_DATA) $< $@ 34 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 35 36 $(PROJECT_INCLUDE)/rtems/score: 37 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 39 40 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 41 $(INSTALL_DATA) $< $@ 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 43 44 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 45 $(INSTALL_DATA) $< $@ 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 47 48 $(PROJECT_INCLUDE)/rtems/score/or32.h: rtems/score/or32.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/or32.h 51 52 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 53 $(INSTALL_DATA) $< $@ 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 55 48 56 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/powerpc/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/powerpc/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS = asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) \25 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)26 12 27 13 include_rtems_scoredir = $(includedir)/rtems/score 28 include_rtems_score_HEADERS = \ 29 rtems/score/ppc.h \ 30 rtems/score/types.h 14 include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h 31 15 include_rtems_score_HEADERS += rtems/score/cpu.h 32 33 $(PROJECT_INCLUDE)/rtems/old-exceptions:34 $(mkinstalldirs) $@35 16 36 17 include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions 37 18 include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h 38 19 39 $(PROJECT_INCLUDE)/rtems/new-exceptions:40 $(mkinstalldirs) $@41 42 20 include_rtems_new_exceptionsdir = $(includedir)/rtems/new-exceptions 43 21 include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h 44 22 45 $(PROJECT_INCLUDE)/rtems/powerpc:46 $(mkinstalldirs) $@47 48 23 include_rtems_powerpcdir = $(includedir)/rtems/powerpc 49 24 include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h 50 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \52 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)53 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions \55 $(include_rtems_old_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)56 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions \58 $(include_rtems_new_exceptions_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)59 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc \61 $(include_rtems_powerpc_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)62 25 63 26 C_FILES = # cpu.c … … 73 36 $(TMPINSTALL_FILES) 74 37 38 PREINSTALL_FILES = 39 40 $(PROJECT_INCLUDE)/asm.h: asm.h 41 $(INSTALL_DATA) $< $@ 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 43 44 $(PROJECT_INCLUDE)/rtems/score: 45 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 47 48 $(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h 51 52 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 53 $(INSTALL_DATA) $< $@ 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 55 56 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 57 $(INSTALL_DATA) $< $@ 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 59 60 $(PROJECT_INCLUDE)/rtems/old-exceptions: 61 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/old-exceptions 62 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions 63 64 $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h 65 $(INSTALL_DATA) $< $@ 66 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h 67 68 $(PROJECT_INCLUDE)/rtems/new-exceptions: 69 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/new-exceptions 70 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions 71 72 $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h 73 $(INSTALL_DATA) $< $@ 74 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h 75 76 $(PROJECT_INCLUDE)/rtems/powerpc: 77 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/powerpc 78 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc 79 80 $(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h 81 $(INSTALL_DATA) $< $@ 82 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/registers.h 83 75 84 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/sh/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/sh/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS= asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/cpu.h \ 29 rtems/score/types.h \ 30 rtems/score/sh.h \ 31 rtems/score/sh_io.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/types.h \ 15 rtems/score/sh.h rtems/score/sh_io.h 34 16 35 17 C_FILES = cpu.c … … 46 28 EXTRA_DIST = cpu.c 47 29 30 PREINSTALL_FILES = 31 32 $(PROJECT_INCLUDE)/asm.h: asm.h 33 $(INSTALL_DATA) $< $@ 34 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 35 36 $(PROJECT_INCLUDE)/rtems/score: 37 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 39 40 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 41 $(INSTALL_DATA) $< $@ 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 43 44 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 45 $(INSTALL_DATA) $< $@ 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 47 48 $(PROJECT_INCLUDE)/rtems/score/sh.h: rtems/score/sh.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sh.h 51 52 $(PROJECT_INCLUDE)/rtems/score/sh_io.h: rtems/score/sh_io.h 53 $(INSTALL_DATA) $< $@ 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sh_io.h 55 48 56 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/sparc/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/sparc/Makefile.am
r8b273c2 rd6a444d 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 11 $(PROJECT_INCLUDE)/%.h: %.h12 $(INSTALL_DATA) $< $@13 14 $(PROJECT_INCLUDE):15 $(mkinstalldirs) $@16 17 $(PROJECT_INCLUDE)/rtems:18 $(mkinstalldirs) $@19 20 $(PROJECT_INCLUDE)/rtems/score:21 $(mkinstalldirs) $@22 23 11 include_HEADERS= asm.h 24 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)25 12 26 13 include_rtems_scoredir = $(includedir)/rtems/score 27 include_rtems_score_HEADERS = \ 28 rtems/score/sparc.h \ 29 rtems/score/cpu.h \ 14 include_rtems_score_HEADERS = rtems/score/sparc.h rtems/score/cpu.h \ 30 15 rtems/score/types.h 31 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)33 16 34 17 C_FILES = cpu.c … … 48 31 EXTRA_DIST = cpu.c cpu_asm.S 49 32 33 PREINSTALL_FILES = 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 39 $(PROJECT_INCLUDE)/rtems/score: 40 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 42 43 $(PROJECT_INCLUDE)/rtems/score/sparc.h: rtems/score/sparc.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sparc.h 46 47 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 50 51 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 54 50 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/unix/ChangeLog
r8b273c2 rd6a444d 1 2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Don't use gmake rules for preinstallation. 4 1 5 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/unix/Makefile.am
r8b273c2 rd6a444d 11 11 AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES) 12 12 13 $(PROJECT_INCLUDE)/%.h: %.h14 $(INSTALL_DATA) $< $@15 16 $(PROJECT_INCLUDE):17 $(mkinstalldirs) $@18 19 $(PROJECT_INCLUDE)/rtems:20 $(mkinstalldirs) $@21 22 $(PROJECT_INCLUDE)/rtems/score:23 $(mkinstalldirs) $@24 25 13 include_rtems_scoredir = $(includedir)/rtems/score 26 include_rtems_score_HEADERS = \ 27 rtems/score/types.h \ 28 rtems/score/cpu.h \ 29 rtems/score/unix.h \ 30 rtems/score/unixsize.h 31 PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \ 32 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 14 include_rtems_score_HEADERS = rtems/score/types.h rtems/score/cpu.h \ 15 rtems/score/unix.h rtems/score/unixsize.h 33 16 34 17 C_FILES = cpu.c … … 45 28 EXTRA_DIST = cpu.c 46 29 30 PREINSTALL_FILES = 31 32 $(PROJECT_INCLUDE)/rtems/score: 33 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 34 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 35 36 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 37 $(INSTALL_DATA) $< $@ 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 39 40 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 41 $(INSTALL_DATA) $< $@ 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 43 44 $(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h 45 $(INSTALL_DATA) $< $@ 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h 47 48 $(PROJECT_INCLUDE)/rtems/score/unixsize.h: rtems/score/unixsize.h 49 $(INSTALL_DATA) $< $@ 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unixsize.h 51 47 52 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.