Changeset 4e36a2f in rtems for c/src/lib/libcpu/powerpc/shared/Makefile.am
- Timestamp:
- Jan 31, 2000, 3:27:02 PM (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bb18b95
- Parents:
- 8fbdf07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/shared/Makefile.am
r8fbdf07 r4e36a2f 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 ## C source names8 7 C_FILES = cpuIdent.c 9 C_O_FILES = $(C_FILES:%.c=$ {ARCH}/%.o)8 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) 10 9 11 10 H_FILES = cpu.h spr.h io.h mmu.h page.h byteorder.h pgtable.h 12 noinst_HEADERS = $(H_FILES)13 11 14 ## Assembly source names 15 S_FILES = 16 S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o) 17 18 OBJS = $(C_O_FILES) $(S_O_FILES) 12 OBJS = $(C_O_FILES) 19 13 20 14 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 21 15 include $(top_srcdir)/../../../../../automake/lib.am 22 16 23 LIB = $ {ARCH}/libcpuspec.a17 LIB = $(ARCH)/libcpuspec.a 24 18 25 19 # … … 27 21 # 28 22 29 $(LIB): $ {OBJS}23 $(LIB): $(OBJS) 30 24 $(make-library) 31 32 PREINSTALL_FILES += \33 $(PROJECT_INCLUDE)/libcpu \34 $(H_FILES:%=$(PROJECT_INCLUDE)/libcpu/%)35 25 36 26 $(PROJECT_INCLUDE)/libcpu: … … 40 30 $(INSTALL_DATA) $< $@ 41 31 42 all-local: ${ARCH} $(PREINSTALL_FILES) $(LIB) 32 PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \ 33 $(H_FILES:%=$(PROJECT_INCLUDE)/libcpu/%) 43 34 44 EXTRA_DIST = $(C_FILES) $(S_FILES) 35 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB) 36 37 .PRECIOUS: $(LIB) 38 39 EXTRA_DIST = byteorder.h cpu.h cpuIdent.c io.h mmu.h page.h pgtable.h spr.h 45 40 46 41 include $(top_srcdir)/../../../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.