source: rtems/c/src/lib/libcpu/powerpc/Makefile.am @ c074ea2e

Last change on this file since c074ea2e was cbc264e6, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/02 at 18:32:20

2002-05-01 Ralf Corsepius <corsepiu@…>

  • rtems/powerpc/debugmod.h: New file (extracted from score/ppc.h).
  • Makefile.am: Relect changes above.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../../aclocal
6
7nobase_include_HEADERS = rtems/powerpc/cache.h \
8    rtems/powerpc/debugmod.h
9
10$(PROJECT_INCLUDE):
11        $(mkinstalldirs) $@
12
13$(PROJECT_INCLUDE)/rtems:
14        $(mkinstalldirs) $@
15
16$(PROJECT_INCLUDE)/rtems/powerpc:
17        $(mkinstalldirs) $@
18
19$(PROJECT_INCLUDE)/%: %
20        $(INSTALL_DATA) $< $@
21
22TMPINSTALL_FILES = $(PROJECT_INCLUDE) \
23  $(PROJECT_INCLUDE)/rtems \
24  $(PROJECT_INCLUDE)/rtems/powerpc \
25  $(nobase_include_HEADERS:%=$(PROJECT_INCLUDE)/%)
26
27## Check configure.in for conditions to set the conditionals below
28if shared
29SHARED_LIB = shared
30endif
31
32if mpc505
33CPU_SUBDIR = mpc505
34endif
35if mpc6xx
36CPU_SUBDIR = mpc6xx
37endif
38if mpc8xx
39CPU_SUBDIR = mpc8xx
40endif
41if mpc8260
42CPU_SUBDIR = mpc8260
43endif
44if ppc403
45CPU_SUBDIR = ppc403
46endif
47if ppc405
48## 403 and 405 chips use the same CPU sources...
49CPU_SUBDIR = ppc403
50endif
51
52SUBDIRS = $(SHARED_LIB) $(CPU_SUBDIR) wrapup
53
54all-local: $(TMPINSTALL_FILES)
55
56include $(top_srcdir)/../../../../../automake/subdirs.am
57include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.