forked from Imagelibrary/rtems
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* kern/Makefile.am: Use .$(OBJEXT) instead of .o. * lib/Makefile.am: Ditto. * libc/Makefile.am: Ditto. * net/Makefile.am: Ditto. * netinet/Makefile.am: Ditto. * nfs/Makefile.am: Ditto. * rtems/Makefile.am: Ditto. * wrapup/Makefile.am: Ditto.
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* kern/Makefile.am: Use .$(OBJEXT) instead of .o.
|
||||
* lib/Makefile.am: Ditto.
|
||||
* libc/Makefile.am: Ditto.
|
||||
* net/Makefile.am: Ditto.
|
||||
* netinet/Makefile.am: Ditto.
|
||||
* nfs/Makefile.am: Ditto.
|
||||
* rtems/Makefile.am: Ditto.
|
||||
* wrapup/Makefile.am: Ditto.
|
||||
|
||||
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* kern/Makefile.am: Eliminate LIBNAME.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
LIB = $(ARCH)/lib.a
|
||||
|
||||
C_FILES = kern_subr.c uipc_domain.c uipc_mbuf.c uipc_socket.c uipc_socket2.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
LIB = $(ARCH)/lib.a
|
||||
|
||||
C_FILES = getprotoby.c rtems_bsdnet_ntp.c ftpfs.c syslog.c tftpDriver.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ C_FILES = addr2ascii.c ascii2addr.c base64.c gethostbydns.c gethostbyht.c \
|
||||
ns_parse.c ns_print.c ns_ttl.c res_comp.c res_data.c res_debug.c \
|
||||
res_init.c res_mkquery.c res_mkupdate.c res_query.c res_send.c \
|
||||
res_stubs.c res_update.c strsep.c rcmd.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ LIB = $(ARCH)/lib.a
|
||||
|
||||
C_FILES = if.c if_ethersubr.c if_loop.c radix.c route.c rtsock.c raw_cb.c \
|
||||
raw_usrreq.c if_ppp.c ppp_tty.c pppcompress.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ C_FILES = if_ether.c igmp.c in.c in_cksum.c in_pcb.c in_proto.c in_rmx.c \
|
||||
ip_divert.c ip_fw.c ip_icmp.c ip_input.c ip_mroute.c ip_output.c \
|
||||
raw_ip.c tcp_debug.c tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c \
|
||||
tcp_usrreq.c udp_usrreq.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ include_nfsdir = $(includedir)/nfs
|
||||
LIB = $(ARCH)/lib.a
|
||||
|
||||
C_FILES = bootp_subr.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ C_FILES = sghostname.c issetugid.c rtems_glue.c rtems_syscall.c \
|
||||
rtems_bootp.c rtems_showmbuf.c rtems_showroute.c rtems_showifstat.c \
|
||||
rtems_showipstat.c rtems_showicmpstat.c rtems_showtcpstat.c \
|
||||
rtems_showudpstat.c rtems_select.c mkrootfs.c
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||
|
||||
OBJS = $(C_O_FILES)
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
|
||||
NET_O_PIECES = kern lib libc net netinet nfs rtems
|
||||
OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o)
|
||||
OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT))
|
||||
LIB = $(ARCH)/libnetworking.a
|
||||
|
||||
include $(top_srcdir)/../automake/multilib.am
|
||||
|
||||
Reference in New Issue
Block a user