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

4.104.114.84.95
Last change on this file since c5ada0b was c5ada0b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/06/02 at 14:20:40

2002-08-06 Ralf Corsepius <corsepiu@…>

  • configure.ac: Replace mcpu32 by mcpu32p conditional.
  • share/misc/Makefile.am: Fix AM_CPPFLAGS bug.
  • Property mode set to 100644
File size: 528 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
17MCPU32P_CPPFLAGS = -D__mcpu32p__
18endif
19
20AM_CPPFLAGS += $(MCPU32P_CPPFLAGS)
21
22all-local: $(ARCH) $(OBJS)
23
24EXTRA_DIST = memcpy.c
25
26include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.