Changeset b17cce8 in rtems
- Timestamp:
- 12/01/03 05:13:29 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 49720ad
- Parents:
- 60f7da2
- Location:
- cpukit/score/cpu
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/arm/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/cpu_asm.h \ 15 rtems/score/arm.h rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/rtems/score: 39 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 41 42 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 45 46 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 49 50 $(PROJECT_INCLUDE)/rtems/score/arm.h: rtems/score/arm.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/arm.h 53 54 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 55 $(INSTALL_DATA) $< $@ 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 57 58 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/c4x/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h c4xio.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/c4x.h \ 15 rtems/score/types.h rtems/score/cpu_asm.h 16 17 C_FILES = cpu.c irq.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c irq.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/c4xio.h: c4xio.h 39 $(INSTALL_DATA) $< $@ 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/c4xio.h 41 42 $(PROJECT_INCLUDE)/rtems/score: 43 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 45 46 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 49 50 $(PROJECT_INCLUDE)/rtems/score/c4x.h: rtems/score/c4x.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/c4x.h 53 54 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 55 $(INSTALL_DATA) $< $@ 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 57 58 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 59 $(INSTALL_DATA) $< $@ 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 61 62 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/h8300/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/h8300.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/rtems/score: 39 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 41 42 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 45 46 $(PROJECT_INCLUDE)/rtems/score/h8300.h: rtems/score/h8300.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/h8300.h 49 50 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 53 54 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/i386/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS= asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 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 \ 16 rtems/score/idtr.h 17 18 LIB = $(ARCH)/libscorecpu.a 19 20 C_FILES = cpu.c 21 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 22 23 S_FILES = cpu_asm.S 24 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 25 26 $(LIB): $(OBJS) 27 $(make-library) 28 29 all-local: $(PREINSTALL_FILES) $(LIB) 30 31 EXTRA_DIST = cpu.c cpu_asm.S 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/i386.h: rtems/score/i386.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i386.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 55 $(PROJECT_INCLUDE)/rtems/score/interrupts.h: rtems/score/interrupts.h 56 $(INSTALL_DATA) $< $@ 57 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/interrupts.h 58 59 $(PROJECT_INCLUDE)/rtems/score/registers.h: rtems/score/registers.h 60 $(INSTALL_DATA) $< $@ 61 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/registers.h 62 63 $(PROJECT_INCLUDE)/rtems/score/idtr.h: rtems/score/idtr.h 64 $(INSTALL_DATA) $< $@ 65 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/idtr.h 66 67 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/i960/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/i960.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S i960RP.h 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/rtems/score: 39 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 41 42 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 45 46 $(PROJECT_INCLUDE)/rtems/score/i960.h: rtems/score/i960.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/i960.h 49 50 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 53 54 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/m68k/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h m68302.h m68360.h qsm.h sim.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/m68k.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/m68302.h: m68302.h 39 $(INSTALL_DATA) $< $@ 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/m68302.h 41 42 $(PROJECT_INCLUDE)/m68360.h: m68360.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/m68360.h 45 46 $(PROJECT_INCLUDE)/qsm.h: qsm.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/qsm.h 49 50 $(PROJECT_INCLUDE)/sim.h: sim.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sim.h 53 54 $(PROJECT_INCLUDE)/rtems/score: 55 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 57 58 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 59 $(INSTALL_DATA) $< $@ 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 61 62 $(PROJECT_INCLUDE)/rtems/score/m68k.h: rtems/score/m68k.h 63 $(INSTALL_DATA) $< $@ 64 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/m68k.h 65 66 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 67 $(INSTALL_DATA) $< $@ 68 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 69 70 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/mips/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h idtcpu.h iregdef.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/idtcpu.h: idtcpu.h 39 $(INSTALL_DATA) $< $@ 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtcpu.h 41 42 $(PROJECT_INCLUDE)/iregdef.h: iregdef.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h 45 46 $(PROJECT_INCLUDE)/rtems/score: 47 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 49 50 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 53 54 $(PROJECT_INCLUDE)/rtems/score/mips.h: rtems/score/mips.h 55 $(INSTALL_DATA) $< $@ 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/mips.h 57 58 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 59 $(INSTALL_DATA) $< $@ 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 61 62 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/mips64orion/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h cpu_asm.h idtcpu.h idtmon.h iregdef.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/mips64orion.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/cpu_asm.h: cpu_asm.h 39 $(INSTALL_DATA) $< $@ 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/cpu_asm.h 41 42 $(PROJECT_INCLUDE)/idtcpu.h: idtcpu.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtcpu.h 45 46 $(PROJECT_INCLUDE)/idtmon.h: idtmon.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/idtmon.h 49 50 $(PROJECT_INCLUDE)/iregdef.h: iregdef.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/iregdef.h 53 54 $(PROJECT_INCLUDE)/rtems/score: 55 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 57 58 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 59 $(INSTALL_DATA) $< $@ 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 61 62 $(PROJECT_INCLUDE)/rtems/score/mips64orion.h: rtems/score/mips64orion.h 63 $(INSTALL_DATA) $< $@ 64 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/mips64orion.h 65 66 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 67 $(INSTALL_DATA) $< $@ 68 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 69 70 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/no_cpu/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS = asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/no_cpu.h \ 15 rtems/score/cpu_asm.h rtems/score/types.h 16 17 C_FILES = cpu.c cpu_asm.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 LIB = $(ARCH)/libscorecpu.a 21 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c cpu_asm.c 28 29 PREINSTALL_FILES = 30 31 $(PROJECT_INCLUDE)/asm.h: asm.h 32 $(INSTALL_DATA) $< $@ 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 34 35 $(PROJECT_INCLUDE)/rtems/score: 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 38 39 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 42 43 $(PROJECT_INCLUDE)/rtems/score/no_cpu.h: rtems/score/no_cpu.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/no_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/types.h: rtems/score/types.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 54 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/or32/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS= asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/types.h \ 15 rtems/score/or32.h rtems/score/cpu_asm.h 16 17 C_FILES = cpu.c cpu_asm.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 LIB = $(ARCH)/libscorecpu.a 21 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c cpu_asm.c 28 29 PREINSTALL_FILES = 30 31 $(PROJECT_INCLUDE)/asm.h: asm.h 32 $(INSTALL_DATA) $< $@ 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 34 35 $(PROJECT_INCLUDE)/rtems/score: 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 38 39 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 42 43 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 46 47 $(PROJECT_INCLUDE)/rtems/score/or32.h: rtems/score/or32.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/or32.h 50 51 $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h: rtems/score/cpu_asm.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu_asm.h 54 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/powerpc/Makefile.am
r60f7da2 rb17cce8 28 28 PREINSTALL_FILES = 29 29 30 $(PROJECT_INCLUDE)/$(dirstamp): 31 @$(mkinstalldirs) $(PROJECT_INCLUDE) 32 @: > $(PROJECT_INCLUDE)/$(dirstamp) 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 34 35 $(PROJECT_INCLUDE)/asm.h: asm.h $(PROJECT_INCLUDE)/$(dirstamp) 36 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h 30 $(PROJECT_INCLUDE)/asm.h: asm.h 31 $(INSTALL_DATA) $< $@ 37 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 38 33 39 $(PROJECT_INCLUDE)/rtems/score /$(dirstamp):34 $(PROJECT_INCLUDE)/rtems/score: 40 35 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 41 @: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp) 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 43 37 44 $(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)45 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/score/ppc.h38 $(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h 39 $(INSTALL_DATA) $< $@ 46 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h 47 41 48 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)49 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/score/types.h42 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 43 $(INSTALL_DATA) $< $@ 50 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 51 45 52 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)53 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/score/cpu.h46 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 47 $(INSTALL_DATA) $< $@ 54 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 55 49 56 $(PROJECT_INCLUDE)/rtems/old-exceptions /$(dirstamp):50 $(PROJECT_INCLUDE)/rtems/old-exceptions: 57 51 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/old-exceptions 58 @: > $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp) 59 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp) 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions 60 53 61 $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp)62 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h54 $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h: rtems/old-exceptions/cpu.h 55 $(INSTALL_DATA) $< $@ 63 56 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/old-exceptions/cpu.h 64 57 65 $(PROJECT_INCLUDE)/rtems/new-exceptions /$(dirstamp):58 $(PROJECT_INCLUDE)/rtems/new-exceptions: 66 59 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/new-exceptions 67 @: > $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp) 68 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp) 60 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions 69 61 70 $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h $(PROJECT_INCLUDE)/rtems/new-exceptions/$(dirstamp)71 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h62 $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h: rtems/new-exceptions/cpu.h 63 $(INSTALL_DATA) $< $@ 72 64 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/new-exceptions/cpu.h 73 65 74 $(PROJECT_INCLUDE)/rtems/powerpc /$(dirstamp):66 $(PROJECT_INCLUDE)/rtems/powerpc: 75 67 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/powerpc 76 @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp) 77 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp) 68 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc 78 69 79 $(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)80 $(INSTALL_DATA) $< $ (PROJECT_INCLUDE)/rtems/powerpc/registers.h70 $(PROJECT_INCLUDE)/rtems/powerpc/registers.h: rtems/powerpc/registers.h 71 $(INSTALL_DATA) $< $@ 81 72 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/registers.h 82 73 -
cpukit/score/cpu/sh/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS= asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/cpu.h rtems/score/types.h \ 15 rtems/score/sh.h rtems/score/sh_io.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 LIB = $(ARCH)/libscorecpu.a 21 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c 28 29 PREINSTALL_FILES = 30 31 $(PROJECT_INCLUDE)/asm.h: asm.h 32 $(INSTALL_DATA) $< $@ 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 34 35 $(PROJECT_INCLUDE)/rtems/score: 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 38 39 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 42 43 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 46 47 $(PROJECT_INCLUDE)/rtems/score/sh.h: rtems/score/sh.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sh.h 50 51 $(PROJECT_INCLUDE)/rtems/score/sh_io.h: rtems/score/sh_io.h 52 $(INSTALL_DATA) $< $@ 53 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sh_io.h 54 55 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/sparc/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 include_HEADERS= asm.h 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/sparc.h rtems/score/cpu.h \ 15 rtems/score/types.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 31 32 PREINSTALL_FILES = 33 34 $(PROJECT_INCLUDE)/asm.h: asm.h 35 $(INSTALL_DATA) $< $@ 36 PREINSTALL_FILES += $(PROJECT_INCLUDE)/asm.h 37 38 $(PROJECT_INCLUDE)/rtems/score: 39 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 41 42 $(PROJECT_INCLUDE)/rtems/score/sparc.h: rtems/score/sparc.h 43 $(INSTALL_DATA) $< $@ 44 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/sparc.h 45 46 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 47 $(INSTALL_DATA) $< $@ 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 49 50 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 51 $(INSTALL_DATA) $< $@ 52 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 53 54 include $(top_srcdir)/../../../automake/local.am -
cpukit/score/cpu/unix/Makefile.am
r60f7da2 rb17cce8 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 ## 2 ## $Id$ 3 ## 2 4 3 * Makefile.am: Remove TMPINSTALL_FILES. 5 ACLOCAL_AMFLAGS = -I ../../../aclocal 4 6 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 10 11 AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES) 12 13 include_rtems_scoredir = $(includedir)/rtems/score 14 include_rtems_score_HEADERS = rtems/score/types.h rtems/score/cpu.h \ 15 rtems/score/unix.h rtems/score/unixsize.h 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 LIB = $(ARCH)/libscorecpu.a 21 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c 28 29 PREINSTALL_FILES = 30 31 $(PROJECT_INCLUDE)/rtems/score: 32 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/score 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score 34 35 $(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h 36 $(INSTALL_DATA) $< $@ 37 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h 38 39 $(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h 40 $(INSTALL_DATA) $< $@ 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h 42 43 $(PROJECT_INCLUDE)/rtems/score/unix.h: rtems/score/unix.h 44 $(INSTALL_DATA) $< $@ 45 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unix.h 46 47 $(PROJECT_INCLUDE)/rtems/score/unixsize.h: rtems/score/unixsize.h 48 $(INSTALL_DATA) $< $@ 49 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/unixsize.h 50 51 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.