source: rtems/c/src/lib/libcpu/powerpc/shared/include/Makefile.am @ 98f3cfa

4.104.114.84.95
Last change on this file since 98f3cfa was 98f3cfa, checked in by Joel Sherrill <joel.sherrill@…>, on 03/05/01 at 22:48:47

2001-02-27 Ralf Corsepius <corsepiu@…>

  • mpc505/ictrl/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc8xx/include/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am, pc403/ictrl/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am: Apply *_HEADERS instead of *H_FILES.
  • shared/src/.cvsignore: Add cache.h.
  • Property mode set to 100644
File size: 943 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = cpuIdent.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
9
10include_libcpudir = $(includedir)/libcpu
11
12include_libcpu_HEADERS = cpu.h spr.h io.h mmu.h page.h byteorder.h pgtable.h
13
14OBJS = $(C_O_FILES)
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(top_srcdir)/../../../../../automake/compile.am
18include $(top_srcdir)/../../../../../automake/lib.am
19
20LIB = $(ARCH)/libcpuspec.a
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
29$(PROJECT_INCLUDE)/libcpu:
30        $(mkinstalldirs) $@
31
32$(PROJECT_INCLUDE)/libcpu/%.h: %.h
33        $(INSTALL_DATA) $< $@
34
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
36    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
37
38all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
39
40.PRECIOUS: $(LIB)
41
42EXTRA_DIST = byteorder.h cpu.h cpuIdent.c io.h mmu.h page.h pgtable.h spr.h
43
44include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.