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

4.104.114.84.95
Last change on this file since 06a27bbf was 06a27bbf, checked in by Joel Sherrill <joel.sherrill@…>, on 08/21/02 at 17:43:48

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

  • configure.ac, shared/misc/Makefile.am: PR217 required that the idle task be moved to libcpu so it could be more acutely aware of the CPU model. This file was modified to pick up the idle task from there.
  • shared/misc/m68kidle.c: New file.
  • Property mode set to 100644
File size: 596 bytes
Line 
1##
2## $Id$
3##
4
5
6C_FILES = memcpy.c m68kidle.c
7C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
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
17M68K_CPPFLAGS = -D__mcpu32p__
18endif
19
20if mcf5272
21M68K_CPPFLAGS = -Dmcf5272
22endif
23
24AM_CPPFLAGS += $(M68K_CPPFLAGS)
25
26all-local: $(ARCH) $(OBJS)
27
28EXTRA_DIST = memcpy.c m68kidle.c
29
30include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.