Changeset d8a78f4f in rtems
- Timestamp:
- 01/31/02 21:33:38 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0286b9f
- Parents:
- 1e69b294
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/sh/ChangeLog
r1e69b294 rd8a78f4f 1 2002-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reflect 2002-01-23 changes. 4 1 5 2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
c/src/exec/score/cpu/sparc/ChangeLog
r1e69b294 rd8a78f4f 1 2002-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reflect 2002-01-23 changes. 4 1 5 2001-01-30 Joel Sherrill <joel@OARcorp.com> 2 6 -
c/src/exec/score/cpu/sparc/Makefile.am
r1e69b294 rd8a78f4f 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 ACLOCAL_AMFLAGS = -I ../../../../../../aclocal 7 8 C_FILES = cpu.c9 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)10 11 include_HEADERS = asm.h12 13 S_FILES = cpu_asm.S14 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)15 16 REL = $(ARCH)/rtems-cpu.rel17 7 18 8 include $(top_srcdir)/../../../../../../automake/multilib.am … … 20 10 include $(top_srcdir)/../../../../../../automake/lib.am 21 11 22 rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) 12 $(PROJECT_INCLUDE)/%.h: %.h 13 $(INSTALL_DATA) $< $@ 23 14 24 15 $(PROJECT_INCLUDE): 25 16 $(mkinstalldirs) $@ 26 27 $(PROJECT_INCLUDE)/%.h: %.h28 $(INSTALL_DATA) $< $@29 17 30 18 $(PROJECT_INCLUDE)/rtems: … … 34 22 $(mkinstalldirs) $@ 35 23 24 include_HEADERS= asm.h 25 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) 26 27 include_rtems_scoredir = $(includedir)/rtems/score 28 include_rtems_score_HEADERS = \ 29 rtems/score/sparc.h \ 30 rtems/score/cpu.h \ 31 rtems/score/sparctypes.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 34 35 C_FILES = cpu.c 36 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 37 38 S_FILES = cpu_asm.S 39 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o) 40 41 REL = $(ARCH)/rtems-cpu.rel 42 43 rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) 44 36 45 $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o 37 46 $(INSTALL_DATA) $< $@ … … 39 48 $(REL): $(rtems_cpu_rel_OBJECTS) 40 49 $(make-rel) 41 42 include_rtems_scoredir = $(includedir)/rtems/score43 include_rtems_score_HEADERS = \44 rtems/score/cpu.h \45 rtems/score/sparc.h \46 rtems/score/sparctypes.h47 48 PREINSTALL_FILES = $(PROJECT_INCLUDE) \49 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \50 $(PROJECT_INCLUDE)/rtems/score \51 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)52 50 53 51 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o … … 60 58 EXTRA_DIST = cpu.c cpu_asm.S rtems.S 61 59 62 include $(top_srcdir)/../../../../../../automake/subdirs.am63 60 include $(top_srcdir)/../../../../../../automake/local.am -
cpukit/score/cpu/sh/ChangeLog
r1e69b294 rd8a78f4f 1 2002-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reflect 2002-01-23 changes. 4 1 5 2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/sparc/ChangeLog
r1e69b294 rd8a78f4f 1 2002-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reflect 2002-01-23 changes. 4 1 5 2001-01-30 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/score/cpu/sparc/Makefile.am
r1e69b294 rd8a78f4f 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 ACLOCAL_AMFLAGS = -I ../../../../../../aclocal 7 8 C_FILES = cpu.c9 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)10 11 include_HEADERS = asm.h12 13 S_FILES = cpu_asm.S14 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)15 16 REL = $(ARCH)/rtems-cpu.rel17 7 18 8 include $(top_srcdir)/../../../../../../automake/multilib.am … … 20 10 include $(top_srcdir)/../../../../../../automake/lib.am 21 11 22 rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) 12 $(PROJECT_INCLUDE)/%.h: %.h 13 $(INSTALL_DATA) $< $@ 23 14 24 15 $(PROJECT_INCLUDE): 25 16 $(mkinstalldirs) $@ 26 27 $(PROJECT_INCLUDE)/%.h: %.h28 $(INSTALL_DATA) $< $@29 17 30 18 $(PROJECT_INCLUDE)/rtems: … … 34 22 $(mkinstalldirs) $@ 35 23 24 include_HEADERS= asm.h 25 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) 26 27 include_rtems_scoredir = $(includedir)/rtems/score 28 include_rtems_score_HEADERS = \ 29 rtems/score/sparc.h \ 30 rtems/score/cpu.h \ 31 rtems/score/sparctypes.h 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \ 33 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h) 34 35 C_FILES = cpu.c 36 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 37 38 S_FILES = cpu_asm.S 39 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o) 40 41 REL = $(ARCH)/rtems-cpu.rel 42 43 rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES) 44 36 45 $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o 37 46 $(INSTALL_DATA) $< $@ … … 39 48 $(REL): $(rtems_cpu_rel_OBJECTS) 40 49 $(make-rel) 41 42 include_rtems_scoredir = $(includedir)/rtems/score43 include_rtems_score_HEADERS = \44 rtems/score/cpu.h \45 rtems/score/sparc.h \46 rtems/score/sparctypes.h47 48 PREINSTALL_FILES = $(PROJECT_INCLUDE) \49 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \50 $(PROJECT_INCLUDE)/rtems/score \51 $(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)52 50 53 51 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o … … 60 58 EXTRA_DIST = cpu.c cpu_asm.S rtems.S 61 59 62 include $(top_srcdir)/../../../../../../automake/subdirs.am63 60 include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.