Changeset 0162910 in rtems


Ignore:
Timestamp:
12/14/98 23:15:38 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0c291bc
Parents:
1d9f198a
Message:

Patch from Ralf Corsepius <corsepiu@…> to rename all
.s files to .S in conformance with GNU conventions. This is a
minor step along the way to supporting automake.

Files:
12 added
1 deleted
109 edited
108 moved

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/cpu/a29k/Makefile.in

    r1d9f198a r0162910  
    2323      $(srcdir)/pswmacro.ah $(srcdir)/register.ah
    2424
    25 # Assembly source names, if any, go here -- minus the .s
     25# Assembly source names, if any, go here -- minus the .S
    2626#  Normally cpu_asm and rtems are assembly files
    2727S_PIECES=cpu_asm sig
    28 S_FILES=$(S_PIECES:%=%.s)
    29 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     28S_FILES=$(S_PIECES:%=%.S)
     29S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    3030
    3131SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/hppa1.1/Makefile.in

    r1d9f198a r0162910  
    2424# Assembly source names, if any, go here -- minus the .s
    2525S_PIECES=cpu_asm rtems
    26 S_FILES=$(S_PIECES:%=%.s)
    27 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     26S_FILES=$(S_PIECES:%=%.S)
     27S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2828
    2929SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/i386/Makefile.in

    r1d9f198a r0162910  
    2222EXTERNAL_H_FILES = $(srcdir)/asm.h
    2323
    24 # Assembly source names, if any, go here -- minus the .s
     24# Assembly source names, if any, go here -- minus the .S
    2525S_PIECES=cpu_asm rtems
    26 S_FILES=$(S_PIECES:%=%.s)
    27 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     26S_FILES=$(S_PIECES:%=%.S)
     27S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2828
    2929SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/i960/Makefile.in

    r1d9f198a r0162910  
    2121EXTERNAL_H_FILES = $(srcdir)/asm.h
    2222
    23 # Assembly source names, if any, go here -- minus the .s
     23# Assembly source names, if any, go here -- minus the .S
    2424S_PIECES=cpu_asm rtems
    25 S_FILES=$(S_PIECES:%=%.s)
    26 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     25S_FILES=$(S_PIECES:%=%.S)
     26S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2727
    2828SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/m68k/Makefile.in

    r1d9f198a r0162910  
    2222        $(srcdir)/qsm.h $(srcdir)/sim.h
    2323
    24 # Assembly source names, if any, go here -- minus the .s
     24# Assembly source names, if any, go here -- minus the .S
    2525S_PIECES=cpu_asm rtems
    26 S_FILES=$(S_PIECES:%=%.s)
    27 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     26S_FILES=$(S_PIECES:%=%.S)
     27S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2828
    2929SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/no_cpu/Makefile.in

    r1d9f198a r0162910  
    2222EXTERNAL_H_FILES = $(srcdir)/asm.h
    2323
    24 # Assembly source names, if any, go here -- minus the .s
     24# Assembly source names, if any, go here -- minus the .S
    2525#  Normally cpu_asm and rtems are assembly files
    2626S_PIECES=
    27 S_FILES=$(S_PIECES:%=%.s)
    28 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     27S_FILES=$(S_PIECES:%=%.S)
     28S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2929
    3030SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/powerpc/Makefile.in

    r1d9f198a r0162910  
    2222EXTERNAL_H_FILES = $(srcdir)/asm.h
    2323
    24 # Assembly source names, if any, go here -- minus the .s
     24# Assembly source names, if any, go here -- minus the .S
    2525#  Normally cpu_asm and rtems are assembly files
    2626S_PIECES=cpu_asm rtems
    27 S_FILES=$(S_PIECES:%=%.s)
    28 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     27S_FILES=$(S_PIECES:%=%.S)
     28S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2929
    3030SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
     
    7474        $(INSTALL) -m 444 ${EXTERNAL_H_FILES} $(PROJECT_INCLUDE)
    7575# make a link in case we are not compiling in the source directory
    76         test -f irq_stub.s || $(LN) -s $(srcdir)/irq_stub.s irq_stub.s
     76        #test -f irq_stub.s || $(LN) -s $(srcdir)/irq_stub.s irq_stub.s
    7777
    7878$(PROJECT_INCLUDE)/rtems/score/targopts.h: $(ARCH)/targopts.h-tmp
  • c/src/exec/score/cpu/sh/Makefile.in

    r1d9f198a r0162910  
    2828        $(srcdir)/asm.h
    2929
    30 # Assembly source names, if any, go here -- minus the .s
     30# Assembly source names, if any, go here -- minus the .S
    3131#  Normally cpu_asm and rtems are assembly files
    3232S_PIECES=
    33 S_FILES=$(S_PIECES:%=%.s)
    34 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     33S_FILES=$(S_PIECES:%=%.S)
     34S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    3535
    3636SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/exec/score/cpu/sparc/Makefile.in

    r1d9f198a r0162910  
    2121EXTERNAL_H_FILES = $(srcdir)/asm.h $(srcdir)/erc32.h
    2222
    23 # Assembly source names, if any, go here -- minus the .s
     23# Assembly source names, if any, go here -- minus the .S
    2424S_PIECES=cpu_asm rtems
    25 S_FILES=$(S_PIECES:%=%.s)
    26 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     25S_FILES=$(S_PIECES:%=%.S)
     26S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2727
    2828SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES) $(EXTERNAL_H_FILES)
  • c/src/lib/libbsp/a29k/portsw/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=$(srcdir)/concntl.h
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/a29k/portsw/shmsupp/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/a29k/portsw/start/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=crt0 register
    20 S_FILES=$(S_PIECES:%=%.s)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     20S_FILES=$(S_PIECES:%=%.S)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/a29k/portsw/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=ramlink romlink $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/hppa1.1/simhppa/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/hppa1.1/simhppa/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup tty shmsupp
     11BSP_PIECES=startup tty
    1212# pieces to pick up out of libcpu/hppa
    1313CPU_PIECES=clock milli timer
    14 GENERIC_PIECES=shmdr
     14GENERIC_PIECES=
     15
     16include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     17include $(RTEMS_ROOT)/make/lib.cfg
     18
     19ifeq ($(HAS_MP),yes)
     20GENERIC_PIECES += shmdr
     21BSP_PIECES += shmsupp
     22endif
    1523
    1624# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    2129         ../../../$(piece)/$(ARCH)/$(piece).rel)
    2230LIB=$(ARCH)/libbsp.a
    23 
    24 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    25 include $(RTEMS_ROOT)/make/lib.cfg
    2631
    2732#
  • c/src/lib/libbsp/i386/force386/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/force386/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=ldsegs
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(srcdir)/linkcmds $(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/force386/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/force386/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console shmsupp timer
    12 GENERIC_PIECES=shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=
     13
     14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     15include $(RTEMS_ROOT)/make/lib.cfg
     16
     17ifeq ($(HAS_MP),yes)
     18GENERIC_PIECES += shmdr
     19BSP_PIECES += shmsupp
     20endif
    1321
    1422# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    1624     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    1725LIB=$(ARCH)/libbsp.a
    18 
    19 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    20 include $(RTEMS_ROOT)/make/lib.cfg
    2126
    2227#
  • c/src/lib/libbsp/i386/go32/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/i386ex/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/i386ex/console/Makefile.in

    r1d9f198a r0162910  
    2020H_FILES=
    2121
    22 # Assembly source names, if any, go here -- minus the .s
     22# Assembly source names, if any, go here -- minus the .S
    2323S_PIECES=
    24 S_FILES=$(S_PIECES:%=%.s)
    25 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     24S_FILES=$(S_PIECES:%=%.S)
     25S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2626
    2727SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/i386ex/start/Makefile.in

    r1d9f198a r0162910  
    1919H_FILES=
    2020
    21 # Assembly source names, if any, go here -- minus the .s
     21# Assembly source names, if any, go here -- minus the .S
    2222S_PIECES=start
    23 S_FILES=$(S_PIECES:%=%.s)
    24 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     23S_FILES=$(S_PIECES:%=%.S)
     24S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2525
    2626SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/i386ex/startup/Makefile.in

    r1d9f198a r0162910  
    1919H_FILES=
    2020
    21 # Assembly source names, if any, go here -- minus the .s
     21# Assembly source names, if any, go here -- minus the .S
    2222# removed initcsu piece, ldsegs piece and flush
    2323S_PIECES=irq_asm
    24 S_FILES=$(S_PIECES:%=%.s)
    25 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     24S_FILES=$(S_PIECES:%=%.S)
     25S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2626
    2727SRCS=$(srcdir)/linkcmds $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/i386ex/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/pc386/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=videoAsm
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES)
  • c/src/lib/libbsp/i386/pc386/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=ldsegs irq_asm
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(srcdir)/linkcmds $(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i386/pc386/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i960/cvme961/start/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=start
    20 S_FILES=$(S_PIECES:%=%.s)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     20S_FILES=$(S_PIECES:%=%.S)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i960/cvme961/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/i960/cvme961/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console shmsupp timer
    12 GENERIC_PIECES=shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=
     13
     14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     15include $(RTEMS_ROOT)/make/lib.cfg
     16
     17ifeq ($(HAS_MP),yes)
     18GENERIC_PIECES += shmdr
     19BSP_PIECES += shmsupp
     20endif
    1321
    1422# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    1624     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    1725LIB=$(ARCH)/libbsp.a
    18 
    19 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    20 include $(RTEMS_ROOT)/make/lib.cfg
    2126
    2227#
  • c/src/lib/libbsp/m68k/dmv152/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68302/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start302
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68302/start302/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start302
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68302/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68340/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=Modif_cpu_asm
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68340/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start340
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68340/start340/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start340
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68360/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start360
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/gen68360/start360/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start360
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/idp/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/mvme136/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/mvme136/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console shmsupp timer
    12 GENERIC_PIECES=shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=
     13
     14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     15include $(RTEMS_ROOT)/make/lib.cfg
     16
     17ifeq ($(HAS_MP),yes)
     18GENERIC_PIECES += shmdr
     19BSP_PIECES += shmsupp
     20endif
    1321
    1422# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    1624     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    1725LIB=$(ARCH)/libbsp.a
    18 
    19 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    20 include $(RTEMS_ROOT)/make/lib.cfg
    2126
    2227#
  • c/src/lib/libbsp/m68k/mvme147/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/mvme147/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console timer # shmsupp
    12 GENERIC_PIECES=# shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=
    1313
    1414# bummer; have to use $foreach since % pattern subst rules only replace 1x
  • c/src/lib/libbsp/m68k/mvme147s/timer/Makefile.in

    r1d9f198a r0162910  
    1616C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=timerisr
    20 S_FILES=$(S_PIECES:%=%.s)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     20S_FILES=$(S_PIECES:%=%.S)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323H_FILES=
  • c/src/lib/libbsp/m68k/mvme147s/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console timer shmsupp
    12 GENERIC_PIECES=shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=
     13
     14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     15include $(RTEMS_ROOT)/make/lib.cfg
     16
     17ifeq ($(HAS_MP),yes)
     18GENERIC_PIECES += shmdr
     19BSP_PIECES += shmsupp
     20endif
    1321
    1422# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    1624     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    1725LIB=$(ARCH)/libbsp.a
    18 
    19 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    20 include $(RTEMS_ROOT)/make/lib.cfg
    2126
    2227#
  • c/src/lib/libbsp/m68k/mvme162/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/ods68302/start/Makefile.in

    r1d9f198a r0162910  
    2525H_FILES=
    2626
    27 # Assembly source names, if any, go here -- minus the .s
     27# Assembly source names, if any, go here -- minus the .S
    2828S_PIECES=$(RESET_SRC)
    29 S_FILES=$(S_PIECES:%=%.s)
    30 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     29S_FILES=$(S_PIECES:%=%.S)
     30S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    3131
    3232SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/ods68302/start302/Makefile.in

    r1d9f198a r0162910  
    2525H_FILES=
    2626
    27 # Assembly source names, if any, go here -- minus the .s
     27# Assembly source names, if any, go here -- minus the .S
    2828S_PIECES=$(RESET_SRC)
    29 S_FILES=$(S_PIECES:%=%.s)
    30 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     29S_FILES=$(S_PIECES:%=%.S)
     30S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    3131
    3232SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/m68k/ods68302/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=timerisr
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/mips64orion/p4000/start/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=idt_csu
    2020S_FILES=$(S_PIECES:%=%.S)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/shmsupp/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=linkcmds $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/timer/Makefile.in

    r1d9f198a r0162910  
    2020H_FILES=
    2121
    22 # Assembly source names, if any, go here -- minus the .s
     22# Assembly source names, if any, go here -- minus the .S
    2323S_PIECES=
    24 S_FILES=$(S_PIECES:%=%.s)
    25 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     24S_FILES=$(S_PIECES:%=%.S)
     25S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2626
    2727SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/no_cpu/no_bsp/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 BSP_PIECES=startup clock console shmsupp timer
    12 GENERIC_PIECES=shmdr
     11BSP_PIECES=startup clock console timer
     12GENERIC_PIECES=$
     13
     14include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     15include $(RTEMS_ROOT)/make/lib.cfg
     16
     17ifeq ($(HAS_MP),yes)
     18GENERIC_PIECES += shmdr
     19BSP_PIECES += shmsupp
     20endif
    1321
    1422# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    1624     $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    1725LIB=$(ARCH)/libbsp.a
    18 
    19 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    20 include $(RTEMS_ROOT)/make/lib.cfg
    2126
    2227#
  • c/src/lib/libbsp/powerpc/dmv177/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/dmv177/sonic/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/dmv177/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/dmv177/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=linkcmds $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/dmv177/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/helas403/dlentry/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=dlentry
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/helas403/flashentry/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=flashentry
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/papyrus/dlentry/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=dlentry
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/papyrus/flashentry/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=flashentry
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=consupp
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=startsim
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/startsim/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=startsim
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=linkcmds device-tree $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/vectors/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=align_h vectors
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/wrapup/Makefile.in

    r1d9f198a r0162910  
    1414GENERIC_PIECES=
    1515
     16include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     17include $(RTEMS_ROOT)/make/lib.cfg
     18
    1619ifeq ($(HAS_MP),yes)
    1720GENERIC_PIECES += shmdr
     
    2629         ../../../$(piece)/$(ARCH)/$(piece).rel)
    2730LIB=$(ARCH)/libbsp.a
    28 
    29 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    30 include $(RTEMS_ROOT)/make/lib.cfg
    3131
    3232#
  • c/src/lib/libbsp/sh/gensh1/scitab/Makefile.in

    r1d9f198a r0162910  
    1717
    1818H_FILES=
    19 # Assembly source names, if any, go here -- minus the .s
     19# Assembly source names, if any, go here -- minus the .S
    2020S_PIECES=
    21 S_FILES=$(S_PIECES:%=%.s)
    22 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     21S_FILES=$(S_PIECES:%=%.S)
     22S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2323
    2424SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sh/gensh1/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sh/gensh1/startup/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=linkcmds $(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sparc/erc32/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sparc/erc32/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sparc/erc32/start/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=startsis
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sparc/erc32/startsis/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=startsis
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/sparc/erc32/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libbsp/unix/posix/wrapup/Makefile.in

    r1d9f198a r0162910  
    99PROJECT_ROOT = @PROJECT_ROOT@
    1010
    11 # MP_XXX_PARTS are the pieces of the BSP required in a MP environment
    12 # We only build them if HAS_MP was defined
    13  
    14 MP_BSP_PARTS_yes_V = shmsupp
    15 MP_BSP_PARTS = $(MP_BSP_PARTS_$(HAS_MP)_V)
    16 
    17 MP_GENERIC_PARTS_yes_V = shmdr
    18 MP_GENERIC_PARTS = $(MP_GENERIC_PARTS_$(HAS_MP)_V)
    19 
    20 
    21 
    22 BSP_PIECES=startup clock console $(MP_BSP_PARTS) timer
     11BSP_PIECES=startup clock console timer
    2312# pieces to pick up out of libcpu/unix
    2413CPU_PIECES=
    25 GENERIC_PIECES=$(MP_GENERIC_PARTS)
     14GENERIC_PIECES=
     15
     16include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
     17include $(RTEMS_ROOT)/make/lib.cfg
     18
     19ifeq ($(HAS_MP),yes)
     20GENERIC_PIECES += shmdr
     21BSP_PIECES += shmsupp
     22endif
    2623
    2724# bummer; have to use $foreach since % pattern subst rules only replace 1x
     
    3229       ../../../$(piece)/$(ARCH)/$(piece).rel)
    3330LIB=$(ARCH)/libbsp.a
    34 
    35 include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
    36 include $(RTEMS_ROOT)/make/lib.cfg
    3731
    3832#
  • c/src/lib/libcpu/hppa1.1/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/hppa1.1/milli/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=milli
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/hppa1.1/semaphore/Makefile.in

    r1d9f198a r0162910  
    1919H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
    2020
    21 # Assembly source names, if any, go here -- minus the .s
     21# Assembly source names, if any, go here -- minus the .S
    2222S_PIECES=
    23 S_FILES=$(S_PIECES:%=%.s)
    24 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     23S_FILES=$(S_PIECES:%=%.S)
     24S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2525
    2626SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/hppa1.1/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/m68k/m68040/fpsp/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES= bindec binstr bugfix decbin do_func gen_except get_op kernel_ex \
    2222    res_func round rtems_skel sacos sasin satan satanh scale scosh setox \
     
    2424    stwotox tbldo util x_bsun x_fline x_operr x_ovfl x_snan x_store x_unfl \
    2525    x_unimp x_unsupp
    26 S_FILES=$(S_PIECES:%=%.s)
    27 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     26S_FILES=$(S_PIECES:%=%.S)
     27S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2828
    2929SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/powerpc/ppc403/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/powerpc/ppc403/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/powerpc/ppc403/ictrl/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=$(srcdir)/ictrl.h
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/powerpc/ppc403/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/powerpc/ppc403/vectors/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=vectors align_h
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/sh/sh7032/clock/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/sh/sh7032/console/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/sh/sh7032/null/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(DOCS) $(C_FILES) $(H_FILES)
  • c/src/lib/libcpu/sh/sh7032/timer/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/libcpu/sparc/reg_win/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=window
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/start/a29k/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=crt0 register
    20 S_FILES=$(S_PIECES:%=%.s)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     20S_FILES=$(S_PIECES:%=%.S)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/start/i960/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=start
    20 S_FILES=$(S_PIECES:%=%.s)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     20S_FILES=$(S_PIECES:%=%.S)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/start/m68k/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/start/mips64orion/Makefile.in

    r1d9f198a r0162910  
    1616H_FILES=
    1717
    18 # Assembly source names, if any, go here -- minus the .s
     18# Assembly source names, if any, go here -- minus the .S
    1919S_PIECES=idt_csu
    2020S_FILES=$(S_PIECES:%=%.S)
    21 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     21S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2222
    2323SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • c/src/lib/start/sh/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=start
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(H_FILES) $(S_FILES)
  • c/src/make/compilers/gcc-target-default.cfg

    r1d9f198a r0162910  
    189189        ${COMPILE.cc} -o $@ $<
    190190
     191# strip out C++ style comments.
    191192${ARCH}/%.o: %.S
    192         ${COMPILE.c} -DASM -o $@ $<
    193 
    194 # strip out C++ style comments.
    195 ${ARCH}/%.o: %.s
    196193        sed -e 's/\/\/.*$$//' < $< | \
    197194            $(CPP) $(ASMFLAGS) -I. -I$(srcdir) -DASM - >$(ARCH)/$*.i
    198195        $(AS) $(ASFLAGS) -o $@ $(ARCH)/$*.i
    199 
    200 #       $(CPP) $(CPPFLAGS) -DASM - < $<  >$(ARCH)/$*.i
    201 #       $(AS) $(ASFLAGS) -o $@ $(ARCH)/$*.i
    202 #       $(RM) $(ARCH)/$*.i
    203196
    204197# Specify our own default rule for this to prevent having CFLAGS and
  • c/src/tests/support/stubdr/Makefile.in

    r1d9f198a r0162910  
    1818H_FILES=$(srcdir)/stubdrv.h
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(DOCS) $(C_FILES) $(H_FILES)
  • make/Templates/Makefile.leaf

    r1d9f198a r0162910  
    1818H_FILES=
    1919
    20 # Assembly source names, if any, go here -- minus the .s
     20# Assembly source names, if any, go here -- minus the .S
    2121S_PIECES=
    22 S_FILES=$(S_PIECES:%=%.s)
    23 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     22S_FILES=$(S_PIECES:%=%.S)
     23S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2424
    2525SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • make/Templates/Makefile.lib

    r1d9f198a r0162910  
    2020H_FILES=
    2121
    22 # Assembly source names, if any, go here -- minus the .s
     22# Assembly source names, if any, go here -- minus the .S
    2323S_PIECES=
    24 S_FILES=$(S_PIECES:%=%.s)
    25 S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
     24S_FILES=$(S_PIECES:%=%.S)
     25S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
    2626
    2727SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
  • make/compilers/gcc-target-default.cfg

    r1d9f198a r0162910  
    189189        ${COMPILE.cc} -o $@ $<
    190190
     191# strip out C++ style comments.
    191192${ARCH}/%.o: %.S
    192         ${COMPILE.c} -DASM -o $@ $<
    193 
    194 # strip out C++ style comments.
    195 ${ARCH}/%.o: %.s
    196193        sed -e 's/\/\/.*$$//' < $< | \
    197194            $(CPP) $(ASMFLAGS) -I. -I$(srcdir) -DASM - >$(ARCH)/$*.i
    198195        $(AS) $(ASFLAGS) -o $@ $(ARCH)/$*.i
    199 
    200 #       $(CPP) $(CPPFLAGS) -DASM - < $<  >$(ARCH)/$*.i
    201 #       $(AS) $(ASFLAGS) -o $@ $(ARCH)/$*.i
    202 #       $(RM) $(ARCH)/$*.i
    203196
    204197# Specify our own default rule for this to prevent having CFLAGS and
Note: See TracChangeset for help on using the changeset viewer.