Changeset bf0747d in rtems
- Timestamp:
- 08/16/03 12:32:36 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f581aa6f
- Parents:
- 29993bb
- Location:
- c/src/lib/libcpu/powerpc
- Files:
-
- 37 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/ChangeLog
r29993bb rbf0747d 1 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Makefile.am: Reflect having moved automake. 4 mpc505/Makefile.am: Reflect having moved automake. 5 mpc505/ictrl/Makefile.am: Reflect having moved automake. 6 mpc505/timer/Makefile.am: Reflect having moved automake. 7 mpc505/vectors/Makefile.am: Reflect having moved automake. 8 mpc6xx/Makefile.am: Reflect having moved automake. 9 mpc6xx/clock/Makefile.am: Reflect having moved automake. 10 mpc6xx/exceptions/Makefile.am: Reflect having moved automake. 11 mpc6xx/mmu/Makefile.am: Reflect having moved automake. 12 mpc6xx/timer/Makefile.am: Reflect having moved automake. 13 mpc6xx/wrapup/Makefile.am: Reflect having moved automake. 14 mpc8260/Makefile.am: Reflect having moved automake. 15 mpc8260/clock/Makefile.am: Reflect having moved automake. 16 mpc8260/console-generic/Makefile.am: Reflect having moved automake. 17 mpc8260/cpm/Makefile.am: Reflect having moved automake. 18 mpc8260/exceptions/Makefile.am: Reflect having moved automake. 19 mpc8260/mmu/Makefile.am: Reflect having moved automake. 20 mpc8260/timer/Makefile.am: Reflect having moved automake. 21 mpc8xx/Makefile.am: Reflect having moved automake. 22 mpc8xx/clock/Makefile.am: Reflect having moved automake. 23 mpc8xx/console-generic/Makefile.am: Reflect having moved automake. 24 mpc8xx/cpm/Makefile.am: Reflect having moved automake. 25 mpc8xx/exceptions/Makefile.am: Reflect having moved automake. 26 mpc8xx/mmu/Makefile.am: Reflect having moved automake. 27 mpc8xx/timer/Makefile.am: Reflect having moved automake. 28 ppc403/Makefile.am: Reflect having moved automake. 29 ppc403/clock/Makefile.am: Reflect having moved automake. 30 ppc403/console/Makefile.am: Reflect having moved automake. 31 ppc403/ictrl/Makefile.am: Reflect having moved automake. 32 ppc403/timer/Makefile.am: Reflect having moved automake. 33 ppc403/tty_drv/Makefile.am: Reflect having moved automake. 34 ppc403/vectors/Makefile.am: Reflect having moved automake. 35 shared/Makefile.am: Reflect having moved automake. 36 shared/include/Makefile.am: Reflect having moved automake. 37 shared/src/Makefile.am: Reflect having moved automake. 38 wrapup/Makefile.am: Reflect having moved automake. 39 1 40 2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 41 -
c/src/lib/libcpu/powerpc/Makefile.am
r29993bb rbf0747d 54 54 all-local: $(TMPINSTALL_FILES) 55 55 56 include $(top_srcdir)/../../../ ../../automake/subdirs.am57 include $(top_srcdir)/../../../ ../../automake/local.am56 include $(top_srcdir)/../../../automake/subdirs.am 57 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc505/Makefile.am
r29993bb rbf0747d 6 6 SUBDIRS = ictrl vectors timer 7 7 8 include $(top_srcdir)/../../../ ../../automake/subdirs.am9 include $(top_srcdir)/../../../ ../../automake/local.am8 include $(top_srcdir)/../../../automake/subdirs.am 9 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc505/ictrl/Makefile.am
r29993bb rbf0747d 12 12 ictrl_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 13 14 include $(top_srcdir)/../../../ ../../automake/compile.am15 include $(top_srcdir)/../../../ ../../automake/lib.am14 include $(top_srcdir)/../../../automake/compile.am 15 include $(top_srcdir)/../../../automake/lib.am 16 16 17 17 $(PROJECT_INCLUDE): … … 36 36 EXTRA_DIST = ictrl.c ictrl.h 37 37 38 include $(top_srcdir)/../../../ ../../automake/local.am38 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc505/timer/Makefile.am
r29993bb rbf0747d 10 10 timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 11 12 include $(top_srcdir)/../../../ ../../automake/compile.am13 include $(top_srcdir)/../../../ ../../automake/lib.am12 include $(top_srcdir)/../../../automake/compile.am 13 include $(top_srcdir)/../../../automake/lib.am 14 14 15 15 # … … 26 26 EXTRA_DIST = timer.c 27 27 28 include $(top_srcdir)/../../../ ../../automake/local.am28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc505/vectors/Makefile.am
r29993bb rbf0747d 11 11 vectors_rel_OBJECTS = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = vectors.S 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/Makefile.am
r29993bb rbf0747d 6 6 SUBDIRS = exceptions mmu clock timer wrapup 7 7 8 include $(top_srcdir)/../../../ ../../automake/subdirs.am9 include $(top_srcdir)/../../../ ../../automake/local.am8 include $(top_srcdir)/../../../automake/subdirs.am 9 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/clock/Makefile.am
r29993bb rbf0747d 12 12 c_clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 13 14 include $(top_srcdir)/../../../ ../../automake/compile.am15 include $(top_srcdir)/../../../ ../../automake/lib.am14 include $(top_srcdir)/../../../automake/compile.am 15 include $(top_srcdir)/../../../automake/lib.am 16 16 17 17 $(PROJECT_INCLUDE)/libcpu: … … 31 31 EXTRA_DIST = c_clock.c c_clock.h 32 32 33 include $(top_srcdir)/../../../ ../../automake/local.am33 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/exceptions/Makefile.am
r29993bb rbf0747d 17 17 $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 18 18 19 include $(top_srcdir)/../../../ ../../automake/compile.am20 include $(top_srcdir)/../../../ ../../automake/lib.am19 include $(top_srcdir)/../../../automake/compile.am 20 include $(top_srcdir)/../../../automake/lib.am 21 21 22 22 $(PROJECT_INCLUDE)/libcpu: … … 41 41 EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h 42 42 43 include $(top_srcdir)/../../../ ../../automake/local.am43 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/mmu/Makefile.am
r29993bb rbf0747d 16 16 mmu_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 17 17 18 include $(top_srcdir)/../../../ ../../automake/compile.am19 include $(top_srcdir)/../../../ ../../automake/lib.am18 include $(top_srcdir)/../../../automake/compile.am 19 include $(top_srcdir)/../../../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/libcpu: … … 40 40 EXTRA_DIST = bat.c bat.h mmuAsm.S pte121.c pte121.h 41 41 42 include $(top_srcdir)/../../../ ../../automake/local.am42 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/timer/Makefile.am
r29993bb rbf0747d 10 10 timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 11 12 include $(top_srcdir)/../../../ ../../automake/compile.am13 include $(top_srcdir)/../../../ ../../automake/lib.am12 include $(top_srcdir)/../../../automake/compile.am 13 include $(top_srcdir)/../../../automake/lib.am 14 14 15 15 # … … 26 26 EXTRA_DIST = timer.c 27 27 28 include $(top_srcdir)/../../../ ../../automake/local.am28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc6xx/wrapup/Makefile.am
r29993bb rbf0747d 14 14 LIB = $(ARCH)/libcpuspec.a 15 15 16 include $(top_srcdir)/../../../ ../../automake/compile.am17 include $(top_srcdir)/../../../ ../../automake/lib.am16 include $(top_srcdir)/../../../automake/compile.am 17 include $(top_srcdir)/../../../automake/lib.am 18 18 19 19 # … … 28 28 all-local: ${ARCH} $(LIB) 29 29 30 include $(top_srcdir)/../../../ ../../automake/local.am30 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/Makefile.am
r29993bb rbf0747d 25 25 all-local: $(PREINSTALL_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/subdirs.am28 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/subdirs.am 28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/clock/Makefile.am
r29993bb rbf0747d 11 11 clock_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/console-generic/Makefile.am
r29993bb rbf0747d 11 11 console_generic_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/cpm/Makefile.am
r29993bb rbf0747d 11 11 cpm_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/exceptions/Makefile.am
r29993bb rbf0747d 16 16 $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 17 17 18 include $(top_srcdir)/../../../ ../../automake/compile.am19 include $(top_srcdir)/../../../ ../../automake/lib.am18 include $(top_srcdir)/../../../automake/compile.am 19 include $(top_srcdir)/../../../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/libcpu: … … 40 40 EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h 41 41 42 include $(top_srcdir)/../../../ ../../automake/local.am42 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/mmu/Makefile.am
r29993bb rbf0747d 11 11 clock_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8260/timer/Makefile.am
r29993bb rbf0747d 11 11 timer_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/Makefile.am
r29993bb rbf0747d 25 25 all-local: $(PREINSTALL_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/subdirs.am28 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/subdirs.am 28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/clock/Makefile.am
r29993bb rbf0747d 11 11 clock_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/console-generic/Makefile.am
r29993bb rbf0747d 11 11 console_generic_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/cpm/Makefile.am
r29993bb rbf0747d 11 11 clock_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/exceptions/Makefile.am
r29993bb rbf0747d 16 16 $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 17 17 18 include $(top_srcdir)/../../../ ../../automake/compile.am19 include $(top_srcdir)/../../../ ../../automake/lib.am18 include $(top_srcdir)/../../../automake/compile.am 19 include $(top_srcdir)/../../../automake/lib.am 20 20 21 21 $(PROJECT_INCLUDE)/libcpu: … … 40 40 EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h 41 41 42 include $(top_srcdir)/../../../ ../../automake/local.am42 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/mmu/Makefile.am
r29993bb rbf0747d 11 11 clock_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/mpc8xx/timer/Makefile.am
r29993bb rbf0747d 11 11 timer_rel_OBJECTS = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(C_FILES) 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/Makefile.am
r29993bb rbf0747d 11 11 endif 12 12 13 include $(top_srcdir)/../../../ ../../automake/subdirs.am14 include $(top_srcdir)/../../../ ../../automake/local.am13 include $(top_srcdir)/../../../automake/subdirs.am 14 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/clock/Makefile.am
r29993bb rbf0747d 10 10 clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 11 12 include $(top_srcdir)/../../../ ../../automake/compile.am13 include $(top_srcdir)/../../../ ../../automake/lib.am12 include $(top_srcdir)/../../../automake/compile.am 13 include $(top_srcdir)/../../../automake/lib.am 14 14 15 15 # … … 26 26 EXTRA_DIST = clock.c 27 27 28 include $(top_srcdir)/../../../ ../../automake/local.am28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/console/Makefile.am
r29993bb rbf0747d 15 15 console_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 16 17 include $(top_srcdir)/../../../ ../../automake/compile.am18 include $(top_srcdir)/../../../ ../../automake/lib.am17 include $(top_srcdir)/../../../automake/compile.am 18 include $(top_srcdir)/../../../automake/lib.am 19 19 20 20 # … … 31 31 EXTRA_DIST = console.c console.c.polled console405.c 32 32 33 include $(top_srcdir)/../../../ ../../automake/local.am33 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/ictrl/Makefile.am
r29993bb rbf0747d 12 12 ictrl_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 13 14 include $(top_srcdir)/../../../ ../../automake/compile.am15 include $(top_srcdir)/../../../ ../../automake/lib.am14 include $(top_srcdir)/../../../automake/compile.am 15 include $(top_srcdir)/../../../automake/lib.am 16 16 17 17 $(PROJECT_INCLUDE): … … 36 36 EXTRA_DIST = ictrl.c ictrl.h 37 37 38 include $(top_srcdir)/../../../ ../../automake/local.am38 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/timer/Makefile.am
r29993bb rbf0747d 10 10 timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 11 12 include $(top_srcdir)/../../../ ../../automake/compile.am13 include $(top_srcdir)/../../../ ../../automake/lib.am12 include $(top_srcdir)/../../../automake/compile.am 13 include $(top_srcdir)/../../../automake/lib.am 14 14 15 15 # … … 26 26 EXTRA_DIST = timer.c 27 27 28 include $(top_srcdir)/../../../ ../../automake/local.am28 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/tty_drv/Makefile.am
r29993bb rbf0747d 12 12 tty_drv_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 13 14 include $(top_srcdir)/../../../ ../../automake/compile.am15 include $(top_srcdir)/../../../ ../../automake/lib.am14 include $(top_srcdir)/../../../automake/compile.am 15 include $(top_srcdir)/../../../automake/lib.am 16 16 17 17 # … … 28 28 EXTRA_DIST = tty_drv.c tty_drv.h 29 29 30 include $(top_srcdir)/../../../ ../../automake/local.am30 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/ppc403/vectors/Makefile.am
r29993bb rbf0747d 11 11 vectors_rel_OBJECTS = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT)) 12 12 13 include $(top_srcdir)/../../../ ../../automake/compile.am14 include $(top_srcdir)/../../../ ../../automake/lib.am13 include $(top_srcdir)/../../../automake/compile.am 14 include $(top_srcdir)/../../../automake/lib.am 15 15 16 16 # … … 25 25 EXTRA_DIST = $(S_FILES) README 26 26 27 include $(top_srcdir)/../../../ ../../automake/local.am27 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/shared/Makefile.am
r29993bb rbf0747d 6 6 SUBDIRS = include src 7 7 8 include $(top_srcdir)/../../../ ../../automake/subdirs.am9 include $(top_srcdir)/../../../ ../../automake/local.am8 include $(top_srcdir)/../../../automake/subdirs.am 9 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/shared/include/Makefile.am
r29993bb rbf0747d 14 14 OBJS = $(C_O_FILES) 15 15 16 include $(top_srcdir)/../../../ ../../automake/compile.am17 include $(top_srcdir)/../../../ ../../automake/lib.am16 include $(top_srcdir)/../../../automake/compile.am 17 include $(top_srcdir)/../../../automake/lib.am 18 18 19 19 LIB = $(ARCH)/libcpuspec.a … … 41 41 EXTRA_DIST = cpuIdent.c 42 42 43 include $(top_srcdir)/../../../ ../../automake/local.am43 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/shared/src/Makefile.am
r29993bb rbf0747d 15 15 OBJS = $(C_O_FILES) 16 16 17 include $(top_srcdir)/../../../ ../../automake/compile.am18 include $(top_srcdir)/../../../ ../../automake/lib.am17 include $(top_srcdir)/../../../automake/compile.am 18 include $(top_srcdir)/../../../automake/lib.am 19 19 20 20 AM_CPPFLAGS += -I$(srcdir) … … 38 38 EXTRA_DIST = cache.c cache_.h 39 39 40 include $(top_srcdir)/../../../ ../../automake/local.am40 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libcpu/powerpc/wrapup/Makefile.am
r29993bb rbf0747d 15 15 LIB = $(ARCH)/libcpu.a 16 16 17 include $(top_srcdir)/../../../ ../../automake/compile.am18 include $(top_srcdir)/../../../ ../../automake/lib.am17 include $(top_srcdir)/../../../automake/compile.am 18 include $(top_srcdir)/../../../automake/lib.am 19 19 20 20 # … … 34 34 all-local: ${ARCH} $(LIB) $(TMPINSTALL_FILES) 35 35 36 include $(top_srcdir)/../../../ ../../automake/local.am36 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.