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

4.104.114.84.95
Last change on this file since a9c795b9 was a9c795b9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/01/03 at 11:51:05

2003-12-01 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc505/Makefile.am: Reformat.
  • mpc505/ictrl/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc505/timer/Makefile.am: Reformat.
  • mpc505/vectors/Makefile.am: Reformat.
  • mpc6xx/Makefile.am: Reformat.
  • mpc6xx/clock/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc6xx/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc6xx/mmu/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc6xx/timer/Makefile.am: Reformat.
  • mpc6xx/wrapup/Makefile.am: Reformat.
  • mpc8260/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc8260/clock/Makefile.am: Reformat.
  • mpc8260/console-generic/Makefile.am: Reformat.
  • mpc8260/cpm/Makefile.am: Reformat.
  • mpc8260/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc8260/mmu/Makefile.am: Reformat.
  • mpc8260/timer/Makefile.am: Reformat.
  • mpc8xx/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc8xx/clock/Makefile.am: Reformat.
  • mpc8xx/console-generic/Makefile.am: Reformat.
  • mpc8xx/cpm/Makefile.am: Reformat.
  • mpc8xx/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • mpc8xx/mmu/Makefile.am: Reformat.
  • mpc8xx/timer/Makefile.am: Reformat.
  • ppc403/Makefile.am: Reformat.
  • ppc403/clock/Makefile.am: Reformat.
  • ppc403/console/Makefile.am: Reformat.
  • ppc403/ictrl/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • ppc403/timer/Makefile.am: Reformat.
  • ppc403/tty_drv/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • ppc403/vectors/Makefile.am: Reformat.
  • shared/Makefile.am: Reformat.
  • shared/include/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • shared/src/Makefile.am: Reformat. Use dirstamp for preinstallation.
  • wrapup/Makefile.am: Reformat.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include_rtems_powerpcdir = $(includedir)/rtems/powerpc
8include_rtems_powerpc_HEADERS = rtems/powerpc/cache.h \
9    rtems/powerpc/debugmod.h
10
11## Check configure.in for conditions to set the conditionals below
12if shared
13SHARED_LIB = shared
14endif
15
16if mpc505
17CPU_SUBDIR = mpc505
18endif
19if mpc6xx
20CPU_SUBDIR = mpc6xx
21endif
22if mpc8xx
23CPU_SUBDIR = mpc8xx
24endif
25if mpc8260
26CPU_SUBDIR = mpc8260
27endif
28if ppc403
29CPU_SUBDIR = ppc403
30endif
31if ppc405
32## 403 and 405 chips use the same CPU sources...
33CPU_SUBDIR = ppc403
34endif
35
36SUBDIRS = $(SHARED_LIB) $(CPU_SUBDIR) wrapup
37
38all-local: $(TMPINSTALL_FILES)
39
40PREINSTALL_FILES =
41
42$(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp):
43        @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems/powerpc
44        @: > $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
46
47$(PROJECT_INCLUDE)/rtems/powerpc/cache.h: rtems/powerpc/cache.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
48        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/cache.h
49PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/cache.h
50
51$(PROJECT_INCLUDE)/rtems/powerpc/debugmod.h: rtems/powerpc/debugmod.h $(PROJECT_INCLUDE)/rtems/powerpc/$(dirstamp)
52        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/powerpc/debugmod.h
53PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/powerpc/debugmod.h
54
55include $(top_srcdir)/../../../automake/subdirs.am
56include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.