source: rtems/c/src/lib/libcpu/powerpc/mpc6xx/mmu/Makefile.am @ 3e30f27

4.104.114.84.95
Last change on this file since 3e30f27 was 3e30f27, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:00:37

2000-09-04 Ralf Corsepius <corsepiu@…>

  • mpc505/timer/Makefile.am, mpc505/vectors/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc6xx/timer/Makefile.am, mpc6xx/wrapup/Makefile.am, ppc403/clock/Makefile.am, ppc403/console/Makefile.am, ppc403/ictrl/Makefile.am, ppc403/timer/Makefile.am, ppc403/vectors/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am, wrapup/Makefile.am, mpc8xx/clock/Makefile.am, mpc8xx/console-generic/Makefile.am, mpc8xx/cpm/Makefile.am, mpc8xx/mmu/Makefile.am, mpc8xx/timer/Makefile.am, mpc8xx/vectors/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 814 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/mmu.rel
8
9C_FILES = bat.c
10
11S_FILES = mmuAsm.S
12
13H_FILES = bat.h
14
15mmu_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../automake/lib.am
20
21$(PROJECT_INCLUDE)/libcpu:
22        $(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/libcpu/%.h: %.h
24        $(INSTALL_DATA) $< $@
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(PGM): $(mmu_rel_OBJECTS)
31        $(make-rel)
32
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
34    $(PROJECT_INCLUDE)/libcpu/bat.h
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(mmu_rel_OBJECTS) $(PGM)
37
38.PRECIOUS: $(PGM)
39
40EXTRA_DIST = bat.c bat.h mmuAsm.S
41
42include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.