- Timestamp:
- 01/16/03 10:52:19 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 64edee07
- Parents:
- 6237ab4
- Location:
- c/src/lib/libcpu/sh/sh7045
- Files:
-
- 4 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/sh/sh7045/ChangeLog
r6237ab4 rec1898b 1 2002-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 1 2003-01-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Merge-in subdir Makefile.ams 4 * configure.ac: Reflect changes above. 5 * score/Makefile.am: Removed. 6 * sci/Makefile.am: Removed. 7 * timer/Makefile.am: Removed. 8 * clock/Makefile.am: Removed. 9 10 2003-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 11 3 12 * sci/Makefile.am: Apply 2002-12-14 patch (Apparently dropped by CVS). -
c/src/lib/libcpu/sh/sh7045/Makefile.am
r6237ab4 rec1898b 5 5 ACLOCAL_AMFLAGS = -I ../../../../../../aclocal 6 6 7 SUBDIRS = . score clock sci timer 7 include $(top_srcdir)/../../../../../../automake/compile.am 8 include $(top_srcdir)/../../../../../../automake/lib.am 8 9 9 10 # NOTE: Unlike other CPUS, we install into a subdirectory to avoid … … 25 26 $(INSTALL_DATA) $< $@ 26 27 27 TMPINSTALL_FILES = $(PROJECT_INCLUDE)/sh \28 PREINSTALL_FILES = $(PROJECT_INCLUDE)/sh \ 28 29 $(include_sh_HEADERS:include/%=$(PROJECT_INCLUDE)/sh/%) \ 29 30 $(include_rtems_score_HEADERS:include/%=$(PROJECT_INCLUDE)/rtems/score/%) 30 31 31 all-local: $(TMPINSTALL_FILES) 32 # clock 32 33 33 include $(top_srcdir)/../../../../../../automake/subdirs.am 34 PGMS = $(ARCH)/clock.rel 35 36 clock_C_FILES = clock/ckinit.c 37 clock_rel_OBJECTS = $(clock_C_FILES:clock/%.c=$(ARCH)/%.$(OBJEXT)) 38 EXTRA_DIST = $(clock_C_FILES) 39 40 ${ARCH}/%.$(OBJEXT): clock/%.c 41 ${COMPILE} -o $@ -c $< 42 ${ARCH}/clock.rel: $(clock_rel_OBJECTS) 43 ${make-rel} 44 45 # sci 46 47 PGMS += $(ARCH)/sci.rel 48 49 sci_C_FILES = sci/sci.c sci/sci_termios.c 50 sci_rel_OBJECTS = $(sci_C_FILES:sci/%.c=$(ARCH)/%.$(OBJEXT)) 51 EXTRA_DIST += $(sci_C_FILES) 52 53 ${ARCH}/%.$(OBJEXT): sci/%.c 54 ${COMPILE} -o $@ -c $< 55 ${ARCH}/sci.rel: $(sci_rel_OBJECTS) 56 ${make-rel} 57 58 # score 59 60 PGMS += $(ARCH)/score.rel 61 62 score_C_FILES = score/cpu_asm.c score/ispsh7045.c 63 score_rel_OBJECTS = $(score_C_FILES:score/%.c=$(ARCH)/%.$(OBJEXT)) 64 EXTRA_DIST += $(score_C_FILES) 65 66 ${ARCH}/%.$(OBJEXT): score/%.c 67 ${COMPILE} -o $@ -c $< 68 ${ARCH}/score.rel: $(score_rel_OBJECTS) 69 ${make-rel} 70 71 ## timer 72 73 PGMS += $(ARCH)/timer.rel 74 75 timer_C_FILES = timer/timer.c 76 timer_rel_OBJECTS = $(timer_C_FILES:timer/%.c=$(ARCH)/%.$(OBJEXT)) 77 EXTRA_DIST += $(timer_C_FILES) 78 79 ${ARCH}/%.$(OBJEXT): timer/%.c 80 ${COMPILE} -o $@ -c $< 81 ${ARCH}/timer.rel: $(timer_rel_OBJECTS) 82 ${make-rel} 83 84 all-local: $(ARCH) $(PGMS) $(TMPINSTALL_FILES) 85 86 .PRECIOUS: $(PGMS) 87 34 88 include $(top_srcdir)/../../../../../../automake/local.am -
c/src/lib/libcpu/sh/sh7045/configure.ac
r6237ab4 rec1898b 28 28 29 29 # Explicitly list all Makefiles here 30 AC_CONFIG_FILES([Makefile 31 clock/Makefile 32 score/Makefile 33 sci/Makefile 34 timer/Makefile]) 30 AC_CONFIG_FILES([Makefile]) 35 31 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.