Changeset bd7b5897 in rtems


Ignore:
Timestamp:
01/16/03 11:44:47 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
bb14bfe0
Parents:
c62c75af
Message:

2003-01-16 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in subdir Makefile.ams
  • configure.ac: Reflect changes above.
  • score/Makefile.am: Removed.
  • sci/Makefile.am: Removed.
  • timer/Makefile.am: Removed.
  • clock/Makefile.am: Removed.
Location:
c/src/lib/libcpu/sh/sh7750
Files:
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/sh/sh7750/ChangeLog

    rc62c75af rbd7b5897  
     12003-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
    1102002-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    211
  • c/src/lib/libcpu/sh/sh7750/Makefile.am

    rc62c75af rbd7b5897  
    55ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
    66
    7 SUBDIRS = . score clock sci timer
     7include $(top_srcdir)/../../../../../../automake/compile.am
     8include $(top_srcdir)/../../../../../../automake/lib.am
    89
    910# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
     
    2930        $(INSTALL_DATA) $< $@
    3031
    31 TMPINSTALL_FILES = \
     32PREINSTALL_FILES = \
    3233    $(PROJECT_INCLUDE)/sh \
    3334    $(include_sh_HEADERS:include/%=$(PROJECT_INCLUDE)/%) \
     
    3738all-local: $(TMPINSTALL_FILES)
    3839
    39 include $(top_srcdir)/../../../../../../automake/subdirs.am
     40## clock
     41
     42PGMS = $(ARCH)/clock.rel
     43
     44clock_C_FILES = clock/ckinit.c
     45clock_rel_OBJECTS = $(clock_C_FILES:clock/%.c=$(ARCH)/%.$(OBJEXT))
     46EXTRA_DIST = $(clock_C_FILES)
     47
     48${ARCH}/%.$(OBJEXT): clock/%.c
     49        ${COMPILE} -o $@ -c $<
     50${ARCH}/clock.rel: $(clock_rel_OBJECTS)
     51        ${make-rel}
     52
     53## sci
     54
     55PGMS += $(ARCH)/sci.rel
     56
     57sci_C_FILES = sci/sh4uart.c
     58sci_rel_OBJECTS = $(sci_C_FILES:sci/%.c=$(ARCH)/%.$(OBJEXT))
     59EXTRA_DIST += $(sci_C_FILES)
     60
     61${ARCH}/%.$(OBJEXT): sci/%.c
     62        ${COMPILE} -o $@ -c $<
     63${ARCH}/sci.rel: $(sci_rel_OBJECTS)
     64        ${make-rel}
     65
     66## score
     67
     68PGMS += $(ARCH)/score.rel
     69
     70score_C_FILES = score/cpu_asm.c score/ispsh7750.c
     71score_rel_OBJECTS = $(score_C_FILES:score/%.c=$(ARCH)/%.$(OBJEXT))
     72EXTRA_DIST += $(score_C_FILES)
     73
     74${ARCH}/%.$(OBJEXT): score/%.c
     75        ${COMPILE} -o $@ -c $<
     76${ARCH}/score.rel: $(score_rel_OBJECTS)
     77        ${make-rel}
     78
     79## timer
     80
     81PGMS += $(ARCH)/timer.rel
     82
     83timer_C_FILES = timer/timer.c
     84timer_rel_OBJECTS = $(timer_C_FILES:timer/%.c=$(ARCH)/%.$(OBJEXT))
     85EXTRA_DIST += $(timer_C_FILES)
     86
     87${ARCH}/%.$(OBJEXT): timer/%.c
     88        ${COMPILE} -o $@ -c $<
     89${ARCH}/timer.rel: $(timer_rel_OBJECTS)
     90        ${make-rel}
     91
     92# --
     93
     94all-local: $(ARCH) $(PGMS) $(TMPINSTALL_FILES)
     95
     96.PRECIOUS: $(PGMS)
     97
    4098include $(top_srcdir)/../../../../../../automake/local.am
  • c/src/lib/libcpu/sh/sh7750/configure.ac

    rc62c75af rbd7b5897  
    2828
    2929# Explicitly list all Makefiles here
    30 AC_CONFIG_FILES([Makefile
    31 clock/Makefile
    32 score/Makefile
    33 sci/Makefile
    34 timer/Makefile])
     30AC_CONFIG_FILES([Makefile])
    3531AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.