Changeset 0e1dd41f in rtems


Ignore:
Timestamp:
07/22/02 13:44:48 (22 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
53f6727
Parents:
239cf33
Message:

2002-07-22 Ralf Corsepius <corsepiu@…>

  • 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.
Location:
cpukit/libnetworking
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libnetworking/ChangeLog

    r239cf33 r0e1dd41f  
     12002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * kern/Makefile.am: Use .$(OBJEXT) instead of .o.
     4        * lib/Makefile.am: Ditto.
     5        * libc/Makefile.am: Ditto.
     6        * net/Makefile.am: Ditto.
     7        * netinet/Makefile.am: Ditto.
     8        * nfs/Makefile.am: Ditto.
     9        * rtems/Makefile.am: Ditto.
     10        * wrapup/Makefile.am: Ditto.
     11
    1122002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    213
  • cpukit/libnetworking/kern/Makefile.am

    r239cf33 r0e1dd41f  
    66
    77C_FILES = kern_subr.c uipc_domain.c uipc_mbuf.c uipc_socket.c uipc_socket2.c
    8 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    99
    1010OBJS = $(C_O_FILES)
  • cpukit/libnetworking/lib/Makefile.am

    r239cf33 r0e1dd41f  
    66
    77C_FILES = getprotoby.c rtems_bsdnet_ntp.c ftpfs.c syslog.c tftpDriver.c
    8 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    99
    1010OBJS = $(C_O_FILES)
  • cpukit/libnetworking/libc/Makefile.am

    r239cf33 r0e1dd41f  
    1414    res_init.c res_mkquery.c res_mkupdate.c res_query.c res_send.c \
    1515    res_stubs.c res_update.c strsep.c rcmd.c
    16 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     16C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1717
    1818OBJS = $(C_O_FILES)
  • cpukit/libnetworking/net/Makefile.am

    r239cf33 r0e1dd41f  
    1010C_FILES = if.c if_ethersubr.c if_loop.c radix.c route.c rtsock.c raw_cb.c \
    1111    raw_usrreq.c if_ppp.c ppp_tty.c pppcompress.c
    12 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1313
    1414OBJS = $(C_O_FILES)
  • cpukit/libnetworking/netinet/Makefile.am

    r239cf33 r0e1dd41f  
    1111    raw_ip.c tcp_debug.c tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c \
    1212    tcp_usrreq.c udp_usrreq.c
    13 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1414
    1515OBJS = $(C_O_FILES)
  • cpukit/libnetworking/nfs/Makefile.am

    r239cf33 r0e1dd41f  
    88
    99C_FILES = bootp_subr.c
    10 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     10C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1111
    1212OBJS = $(C_O_FILES)
  • cpukit/libnetworking/rtems/Makefile.am

    r239cf33 r0e1dd41f  
    1111    rtems_showipstat.c rtems_showicmpstat.c rtems_showtcpstat.c \
    1212    rtems_showudpstat.c rtems_select.c mkrootfs.c
    13 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
     13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1414
    1515OBJS = $(C_O_FILES)
  • cpukit/libnetworking/wrapup/Makefile.am

    r239cf33 r0e1dd41f  
    55
    66NET_O_PIECES = kern lib libc net netinet nfs rtems
    7 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o)
     7OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT))
    88LIB = $(ARCH)/libnetworking.a
    99
Note: See TracChangeset for help on using the changeset viewer.