2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/i386/any/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* src/m68k/any/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* src/powerpc/new_exception_processing/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 06:00:38 +00:00
parent 2f6a4b3405
commit c6bb4fa450
4 changed files with 15 additions and 9 deletions

View File

@@ -1,3 +1,9 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/i386/any/Makefile.am: Use .$(OBJEXT) instead of .o.
* src/m68k/any/Makefile.am: Use .$(OBJEXT) instead of .o.
* src/powerpc/new_exception_processing/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-07-01 Joel Sherrill <joel@OARcorp.com>
* src/_servtgt.c, src/ptrace.c: Corrected use of

View File

@@ -11,15 +11,15 @@ LIB = ${ARCH}/${LIBNAME}.a
# C and C++ source names
C_FILES = rdbg.c servcon.c servbkpt.c servrpc.c excep.c excep_f.c servtgt.c \
servtsp.c servutil.c _servtgt.c rdbg_f.c ptrace.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# Asm source names
S_FILES = rdbg_cpu_asm.S
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT))
# Generated C source names
GEN_C_FILES = remdeb_xdr.c remdeb_svc.c
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.o)
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# H source names
H_FILES = remdeb.h

View File

@@ -11,15 +11,15 @@ LIB = ${ARCH}/${LIBNAME}.a
# C and C++ source names
C_FILES = rdbg.c servcon.c servbkpt.c servrpc.c excep.c excep_f.c servtgt.c \
servtsp.c servutil.c _servtgt.c rdbg_f.c ptrace.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# Asm source names
S_FILES = rdbg_cpu_asm.S
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT))
# Generated C source names
GEN_C_FILES = remdeb_xdr.c remdeb_svc.c
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.o)
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# H source names
H_FILES = remdeb.h

View File

@@ -11,15 +11,15 @@ LIB = ${ARCH}/${LIBNAME}.a
# C and C++ source names
C_FILES = rdbg.c servcon.c servbkpt.c servrpc.c excep.c excep_f.c servtgt.c \
servtsp.c servutil.c _servtgt.c rdbg_f.c ptrace.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# Asm source names
S_FILES = rdbg_cpu_asm.S
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT))
# Generated C source names
GEN_C_FILES = remdeb_xdr.c remdeb_svc.c
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.o)
GEN_C_O_FILES = $(GEN_C_FILES:%.c=${ARCH}/%.$(OBJEXT))
# H source names
H_FILES = remdeb.h