Changeset cccb7e0 in rtems


Ignore:
Timestamp:
11/20/02 14:21:25 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
e4eb1be
Parents:
b6cc40a
Message:

2002-11-20 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in rtems/Makefile.am and sapi/Makefile.am.
  • sapi/Makefile.am: Removed.
  • rtems/Makefile.am: Removed.
  • rel.am: Removed.
  • configure.ac: Add RTEMS_BSP_CHECK_CACHE. Reflect changes above.
Location:
c/src/optman
Files:
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/optman/ChangeLog

    rb6cc40a rcccb7e0  
     12002-11-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Merge-in rtems/Makefile.am and sapi/Makefile.am.
     4        * sapi/Makefile.am: Removed.
     5        * rtems/Makefile.am: Removed.
     6        * rel.am: Removed.
     7        * configure.ac: Add RTEMS_BSP_CHECK_CACHE.
     8        Reflect changes above.
     9
    1102002-11-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    211
  • c/src/optman/Makefile.am

    rb6cc40a rcccb7e0  
    55ACLOCAL_AMFLAGS = -I ../../../aclocal
    66
    7 SUBDIRS = rtems sapi
     7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     8include $(top_srcdir)/../../../automake/compile.am
     9include $(top_srcdir)/../../../automake/lib.am
    810
    9 include $(top_srcdir)/../../../automake/subdirs.am
     11C_FILES = sapi/no-ext.c sapi/no-io.c
     12C_O_FILES = $(C_FILES:sapi/%.c=$(ARCH)/%.$(OBJEXT))
     13
     14C_FILES += rtems/no-dpmem.c rtems/no-event.c rtems/no-msg.c rtems/no-mp.c \
     15    rtems/no-part.c rtems/no-region.c \
     16    rtems/no-rtmon.c rtems/no-sem.c rtems/no-signal.c rtems/no-timer.c
     17C_O_FILES += $(C_FILES:rtems/%.c=${ARCH}/%.$(OBJEXT))
     18
     19PGMS = $(C_FILES:rtems/%.c=$(ARCH)/%$(LIB_VARIANT).rel)
     20PGMS += $(C_FILES:sapi/%.c=$(ARCH)/%$(LIB_VARIANT).rel)
     21
     22${ARCH}/%.o: sapi/%.c
     23        test -d $(ARCH) || mkdir $(ARCH)
     24        ${COMPILE} -o $@ -c $<
     25
     26${ARCH}/%.o: rtems/%.c
     27        test -d $(ARCH) || mkdir $(ARCH)
     28        ${COMPILE} -o $@ -c $<
     29
     30# Make foo.rel from foo.o
     31${ARCH}/%$(LIB_VARIANT).rel: ${ARCH}/%.o
     32        test -d $(ARCH) || mkdir $(ARCH)
     33        ${make-rel}
     34
     35bsplib_DATA = $(PGMS)
     36
     37TMPINSTALL_FILES += \
     38    $(PGMS:${ARCH}/%$(LIB_VARIANT).rel=$(PROJECT_RELEASE)/lib/%$(LIB_VARIANT).rel)
     39
     40$(PROJECT_RELEASE)/lib/%$(LIB_VARIANT).rel: $(ARCH)/%$(LIB_VARIANT).rel
     41        $(INSTALL_DATA) $< $@
     42
     43all-local: ${ARCH} $(PGMS) $(TMPINSTALL_FILES)
     44
     45.PRECIOUS: $(PGMS) $(C_O_FILES)
     46
     47EXTRA_DIST = $(C_FILES)
     48
    1049include $(top_srcdir)/../../../automake/local.am
  • c/src/optman/configure.ac

    rb6cc40a rcccb7e0  
    1515
    1616RTEMS_ENV_RTEMSBSP
     17RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
    1718
    1819RTEMS_CHECK_CPU
     
    2526
    2627# Explicitly list all Makefiles here
    27 AC_CONFIG_FILES([Makefile
    28 rtems/Makefile
    29 sapi/Makefile
    30 ])
     28AC_CONFIG_FILES([Makefile])
    3129AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.