mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-28 07:20:16 +00:00
* m68040/fpsp/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/clock/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/console/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/mbus/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/timer/Makefile.am: Use .$(OBJEXT) instead of .o. * shared/cache/Makefile.am: Use .$(OBJEXT) instead of .o. * shared/misc/Makefile.am: Use .$(OBJEXT) instead of .o.
27 lines
536 B
Makefile
27 lines
536 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
C_FILES = memcpy.c
|
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
|
|
|
OBJS = $(C_O_FILES)
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../../../../../automake/compile.am
|
|
include $(top_srcdir)/../../../../../automake/lib.am
|
|
|
|
# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
|
|
if mcpu32p
|
|
MCPU32P_CPPFLAGS = -D__mcpu32p__
|
|
endif
|
|
|
|
AM_CPPFLAGS += $(MCPU32P_CPPFLAGS)
|
|
|
|
all-local: $(ARCH) $(OBJS)
|
|
|
|
EXTRA_DIST = memcpy.c
|
|
|
|
include $(top_srcdir)/../../../../../automake/local.am
|