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

* kern/Makefile.am: Eliminate LIBNAME.
	* 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: Use project_libdir instead of
	$(PROJECT_RELEASE)/lib.
This commit is contained in:
Ralf Corsepius
2002-07-22 06:35:33 +00:00
parent 3e83325e56
commit eb4b28dca2
9 changed files with 21 additions and 20 deletions

View File

@@ -1,7 +1,20 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* kern/Makefile.am: Eliminate LIBNAME.
* 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: Use project_libdir instead of
$(PROJECT_RELEASE)/lib.
2002-07-17 Jay Monkman <jtm@smoothsmoothie.com>
* netinet/in.h, netinet/ip.h, netinet/ip_var.h, netinet/tcp.h:
Modified to added packed attribute.o
2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: RTEMS_TOP(../..).

View File

@@ -2,9 +2,7 @@
## $Id$
##
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
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)

View File

@@ -2,9 +2,7 @@
## $Id$
##
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
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)

View File

@@ -2,9 +2,7 @@
## $Id$
##
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
LIB = $(ARCH)/lib.a
C_FILES = addr2ascii.c ascii2addr.c base64.c gethostbydns.c gethostbyht.c \
gethostbynis.c gethostnamadr.c getnetbydns.c getnetbyht.c getnetbynis.c \

View File

@@ -5,8 +5,7 @@
include_netdir = $(includedir)/net
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
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

View File

@@ -2,11 +2,9 @@
## $Id$
##
include_netinetdir = $(includedir)/netinet
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
LIB = $(ARCH)/lib.a
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 \

View File

@@ -2,11 +2,9 @@
## $Id$
##
include_nfsdir = $(includedir)/nfs
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
LIB = $(ARCH)/lib.a
C_FILES = bootp_subr.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)

View File

@@ -4,8 +4,7 @@
include_rtemsdir = $(includedir)/rtems
LIBNAME = lib.a
LIB = $(ARCH)/$(LIBNAME)
LIB = $(ARCH)/lib.a
C_FILES = sghostname.c issetugid.c rtems_glue.c rtems_syscall.c \
rtems_bootp.c rtems_showmbuf.c rtems_showroute.c rtems_showifstat.c \

View File

@@ -18,7 +18,7 @@ include $(top_srcdir)/../automake/lib.am
$(LIB): $(OBJS)
$(make-library)
$(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a: $(LIB)
$(project_libdir)/libnetworking$(LIB_VARIANT).a: $(LIB)
$(INSTALL_DATA) $< $@
all-local: $(ARCH) $(OBJS) $(LIB)