Ignore:
Timestamp:
01/31/00 15:27:02 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
bb18b95
Parents:
8fbdf07
Message:

Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff from
Ralf Corsepius <corsepiu@…> that contain:

  • Modifications, (minor) corrections, cleanups to most existing Makefile.ams
  • Adds automake support to all remaining BSPs which have not yet been converted to automake.
  • Makefile.am for all remaining wrapup/Makefile.ams
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libmisc/dumpbuf/Makefile.am

    r8fbdf07 r4e36a2f  
    1 ##
    2 ##  $Id$
    3 ##
     1## 
     2## $Id$
     3## 
    44
    55AUTOMAKE_OPTIONS = foreign 1.4
    66
    77LIBNAME = libdumpbuf-tmp
    8 LIB = ${ARCH}/$(LIBNAME).a
     8LIB = $(ARCH)/$(LIBNAME).a
    99
    10 # C source names, if any, go here -- minus the .c
    1110C_FILES = dumpbuf.c
    12 C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
    1312
    1413H_FILES = dumpbuf.h
    15 noinst_HEADERS = $(H_FILES)
    1614
    17 SRCS = $(C_FILES) $(H_FILES)
    1815OBJS = $(C_O_FILES)
    1916
    2017include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    21 include $(RTEMS_ROOT)/make/lib.cfg
    22 
    23 PREINSTALL_FILES = \
    24 $(PROJECT_INCLUDE)/rtems \
    25 $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%)
     18include $(top_srcdir)/../../../automake/lib.am
    2619
    2720$(PROJECT_INCLUDE)/rtems:
     
    3427#
    3528
    36 ${LIB}: ${OBJS}
     29$(LIB): $(OBJS)
    3730        $(make-library)
    3831
    39 all: ${ARCH} $(PREINSTALL_FILES) $(LIB) $(TMPINSTALL_FILES)
     32PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
     33    $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%)
    4034
    41 EXTRA_DIST += $(C_FILES)
     35all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
     36
     37.PRECIOUS: $(LIB)
     38
     39EXTRA_DIST = dumpbuf.c dumpbuf.h
    4240
    4341include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset for help on using the changeset viewer.