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

4.104.114.84.95
Last change on this file since 21e1c44 was fe8bc62f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/18/03 at 06:47:09

2003-08-18 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Reflect having moved aclocal/.
  • 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.