source: rtems/c/src/lib/libcpu/m68k/Makefile.am @ 87619fd

4.104.114.84.95
Last change on this file since 87619fd was 87619fd, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/11/05 at 08:16:52

Fix typo in previous patch.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/compile.am
8
9SUBDIRS = m68040 mcf5206 mcf5272 mcf5282
10
11CLEANFILES =
12DISTCLEANFILES =
13noinst_PROGRAMS =
14
15if shared
16include_libcpudir = $(includedir)/libcpu
17
18## shared/cache
19include_libcpu_HEADERS = ../shared/include/cache.h
20
21noinst_PROGRAMS += shared/cache.rel
22shared_cache_rel_SOURCES = shared/cache/cache.c shared/cache/cache_.h \
23    ../shared/src/cache_aligned_malloc.c \
24    ../shared/src/cache_manager.c
25shared_cache_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/shared/cache
26shared_cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
27
28## shared/misc
29
30# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
31if mcpu32p
32M68K_CPPFLAGS = -D__mcpu32p__
33endif
34if mcf5272
35M68K_CPPFLAGS = -Dmcf5272
36endif
37
38noinst_PROGRAMS += shared/misc.rel
39shared_misc_rel_SOURCES = shared/misc/memcpy.c shared/misc/m68kidle.c shared/misc/memProbe.c
40shared_misc_rel_CPPFLAGS = $(AM_CPPFLAGS) $(M68K_CPPFLAGS)
41shared_misc_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
42endif
43
44include $(srcdir)/preinstall.am
45
46include $(top_srcdir)/../../../automake/subdirs.am
47include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.