source: rtems/c/src/lib/libcpu/powerpc/shared/include/Makefile.am @ 00e8978b

4.104.114.84.95
Last change on this file since 00e8978b 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: 871 bytes
RevLine 
[abd9401]1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = cpuIdent.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
9
10H_FILES = cpu.h spr.h io.h mmu.h page.h byteorder.h pgtable.h
11
12OBJS = $(C_O_FILES)
13
14include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[3e30f27]15include $(top_srcdir)/../../../../../automake/compile.am
[abd9401]16include $(top_srcdir)/../../../../../automake/lib.am
17
18LIB = $(ARCH)/libcpuspec.a
19
20#
21# (OPTIONAL) Add local stuff here using +=
22#
23
24$(LIB): $(OBJS)
25        $(make-library)
26
27$(PROJECT_INCLUDE)/libcpu:
28        $(mkinstalldirs) $@
29
30$(PROJECT_INCLUDE)/libcpu/%.h: %.h
31        $(INSTALL_DATA) $< $@
32
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
34    $(H_FILES:%=$(PROJECT_INCLUDE)/libcpu/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = byteorder.h cpu.h cpuIdent.c io.h mmu.h page.h pgtable.h spr.h
41
42include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.