Changeset ec1898b in rtems for c/src/lib


Ignore:
Timestamp:
01/16/03 10:52:19 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
64edee07
Parents:
6237ab4
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/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>
     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
     102003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    211
    312        * sci/Makefile.am: Apply 2002-12-14 patch (Apparently dropped by CVS).
  • c/src/lib/libcpu/sh/sh7045/Makefile.am

    r6237ab4 rec1898b  
    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
     
    2526        $(INSTALL_DATA) $< $@
    2627
    27 TMPINSTALL_FILES = $(PROJECT_INCLUDE)/sh \
     28PREINSTALL_FILES = $(PROJECT_INCLUDE)/sh \
    2829    $(include_sh_HEADERS:include/%=$(PROJECT_INCLUDE)/sh/%) \
    2930    $(include_rtems_score_HEADERS:include/%=$(PROJECT_INCLUDE)/rtems/score/%)
    3031
    31 all-local: $(TMPINSTALL_FILES)
     32# clock
    3233
    33 include $(top_srcdir)/../../../../../../automake/subdirs.am
     34PGMS = $(ARCH)/clock.rel
     35
     36clock_C_FILES = clock/ckinit.c
     37clock_rel_OBJECTS = $(clock_C_FILES:clock/%.c=$(ARCH)/%.$(OBJEXT))
     38EXTRA_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
     47PGMS += $(ARCH)/sci.rel
     48
     49sci_C_FILES = sci/sci.c sci/sci_termios.c
     50sci_rel_OBJECTS = $(sci_C_FILES:sci/%.c=$(ARCH)/%.$(OBJEXT))
     51EXTRA_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
     60PGMS += $(ARCH)/score.rel
     61
     62score_C_FILES = score/cpu_asm.c score/ispsh7045.c
     63score_rel_OBJECTS = $(score_C_FILES:score/%.c=$(ARCH)/%.$(OBJEXT))
     64EXTRA_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
     73PGMS += $(ARCH)/timer.rel
     74
     75timer_C_FILES = timer/timer.c
     76timer_rel_OBJECTS = $(timer_C_FILES:timer/%.c=$(ARCH)/%.$(OBJEXT))
     77EXTRA_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
     84all-local: $(ARCH) $(PGMS) $(TMPINSTALL_FILES)
     85
     86.PRECIOUS: $(PGMS)
     87
    3488include $(top_srcdir)/../../../../../../automake/local.am
  • c/src/lib/libcpu/sh/sh7045/configure.ac

    r6237ab4 rec1898b  
    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.