2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/xdr/Makefile.am: Use .$(OBJEXT) instead of .o.
	* src/rpc/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-07-22 13:55:34 +00:00
parent 53f67279d7
commit 83864ea2a6
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/xdr/Makefile.am: Use .$(OBJEXT) instead of .o.
* src/rpc/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/xdr/Makefile.am: Eliminate LIBNAME. * src/xdr/Makefile.am: Eliminate LIBNAME.

View File

@@ -21,7 +21,7 @@ UNUSED_C_FILES = auth_des.c auth_time.c authdes_prot.c clnt_unix.c \
crypt_client.c des_crypt.c des_soft.c getpublickey.c key_call.c \ crypt_client.c des_crypt.c des_soft.c getpublickey.c key_call.c \
key_prot_xdr.c svc_auth_des.c svc_unix.c key_prot_xdr.c svc_auth_des.c svc_unix.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) OBJS = $(C_O_FILES)

View File

@@ -10,7 +10,7 @@ include $(top_srcdir)/../automake/lib.am
C_FILES = xdr.c xdr_array.c xdr_float.c xdr_mem.c xdr_rec.c xdr_reference.c \ C_FILES = xdr.c xdr_array.c xdr_float.c xdr_mem.c xdr_rec.c xdr_reference.c \
xdr_sizeof.c xdr_stdio.c xdr_sizeof.c xdr_stdio.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) OBJS = $(C_O_FILES)