source: rtems/c/src/lib/libcpu/powerpc/shared/include/Makefile.am @ 5f4ee2a

4.104.114.84.95
Last change on this file since 5f4ee2a was 5f4ee2a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/01 at 19:45:55

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

  • new_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • old_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/mmu/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/clock/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'CLEANFILES ='.
  • Property mode set to 100644
File size: 942 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.