source: rtems/c/src/lib/libcpu/m68k/shared/misc/Makefile.am @ 3f5480c

4.104.114.84.95
Last change on this file since 3f5480c was 3f5480c, checked in by Joel Sherrill <joel.sherrill@…>, on 08/05/02 at 19:03:52

2002-08-05 Joel Sherrill <joel@…>

  • Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore? and required that the m68k optimized memcpy be moved to libcpu.
  • shared/misc/memcpy.c: Moved from score/cpu/m68k.
  • configure.ac, shared/Makefile.am: Modified to reflect new directory.
  • shared/misc/.cvsignore, shared/misc/Makefile.am: New file.
  • Property mode set to 100644
File size: 488 bytes
Line 
1##
2## $Id$
3##
4
5
6C_FILES = memcpy.c
7C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
8
9OBJS = $(C_O_FILES)
10
11include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
12include $(top_srcdir)/../../../../../automake/compile.am
13include $(top_srcdir)/../../../../../automake/lib.am
14
15# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
16if mcpu32p
17AM_CPPFLAGS += -D__mcpu32p__
18endif
19
20all-local: $(ARCH) $(OBJS)
21
22EXTRA_DIST = memcpy.c
23
24include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.