forked from Imagelibrary/rtems
Base files
This commit is contained in:
46
c/src/lib/libnetworking/kern/Makefile.in
Normal file
46
c/src/lib/libnetworking/kern/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=kern.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=kern_subr uipc_domain uipc_mbuf uipc_socket uipc_socket2
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
46
c/src/lib/libnetworking/lib/Makefile.in
Normal file
46
c/src/lib/libnetworking/lib/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=getprotoby syslog tftpDriver
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
54
c/src/lib/libnetworking/libc/Makefile.in
Normal file
54
c/src/lib/libnetworking/libc/Makefile.in
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES= base64 \
|
||||||
|
gethostbydns gethostbyht gethostbynis gethostnamadr \
|
||||||
|
herror \
|
||||||
|
inet_addr inet_ntoa inet_ntop inet_pton \
|
||||||
|
map_v4v6 \
|
||||||
|
nsap_addr ns_name ns_netint ns_parse ns_print ns_ttl \
|
||||||
|
res_comp res_data res_debug res_init res_mkquery res_mkupdate \
|
||||||
|
res_query res_send res_stubs res_update \
|
||||||
|
strsep
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
48
c/src/lib/libnetworking/net/Makefile.in
Normal file
48
c/src/lib/libnetworking/net/Makefile.in
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=if if_ethersubr if_loop \
|
||||||
|
radix route rtsock \
|
||||||
|
raw_cb raw_usrreq
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
52
c/src/lib/libnetworking/netinet/Makefile.in
Normal file
52
c/src/lib/libnetworking/netinet/Makefile.in
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=if_ether \
|
||||||
|
igmp \
|
||||||
|
in in_cksum in_pcb in_proto in_rmx \
|
||||||
|
ip_divert ip_fw ip_icmp ip_input ip_mroute ip_output \
|
||||||
|
raw_ip \
|
||||||
|
tcp_debug tcp_input tcp_output tcp_subr tcp_timer tcp_usrreq \
|
||||||
|
udp_usrreq
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
46
c/src/lib/libnetworking/nfs/Makefile.in
Normal file
46
c/src/lib/libnetworking/nfs/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES= bootp_subr
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
46
c/src/libnetworking/kern/Makefile.in
Normal file
46
c/src/libnetworking/kern/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=kern.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=kern_subr uipc_domain uipc_mbuf uipc_socket uipc_socket2
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
46
c/src/libnetworking/lib/Makefile.in
Normal file
46
c/src/libnetworking/lib/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=getprotoby syslog tftpDriver
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
54
c/src/libnetworking/libc/Makefile.in
Normal file
54
c/src/libnetworking/libc/Makefile.in
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES= base64 \
|
||||||
|
gethostbydns gethostbyht gethostbynis gethostnamadr \
|
||||||
|
herror \
|
||||||
|
inet_addr inet_ntoa inet_ntop inet_pton \
|
||||||
|
map_v4v6 \
|
||||||
|
nsap_addr ns_name ns_netint ns_parse ns_print ns_ttl \
|
||||||
|
res_comp res_data res_debug res_init res_mkquery res_mkupdate \
|
||||||
|
res_query res_send res_stubs res_update \
|
||||||
|
strsep
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
48
c/src/libnetworking/net/Makefile.in
Normal file
48
c/src/libnetworking/net/Makefile.in
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=if if_ethersubr if_loop \
|
||||||
|
radix route rtsock \
|
||||||
|
raw_cb raw_usrreq
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
52
c/src/libnetworking/netinet/Makefile.in
Normal file
52
c/src/libnetworking/netinet/Makefile.in
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES=if_ether \
|
||||||
|
igmp \
|
||||||
|
in in_cksum in_pcb in_proto in_rmx \
|
||||||
|
ip_divert ip_fw ip_icmp ip_input ip_mroute ip_output \
|
||||||
|
raw_ip \
|
||||||
|
tcp_debug tcp_input tcp_output tcp_subr tcp_timer tcp_usrreq \
|
||||||
|
udp_usrreq
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
46
c/src/libnetworking/nfs/Makefile.in
Normal file
46
c/src/libnetworking/nfs/Makefile.in
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
RTEMS_ROOT = @top_srcdir@
|
||||||
|
PROJECT_ROOT = @PROJECT_ROOT@
|
||||||
|
|
||||||
|
LIBNAME=lib.a
|
||||||
|
LIB=${ARCH}/${LIBNAME}
|
||||||
|
|
||||||
|
# C and C++ source names, if any, go here -- minus the .c or .cc
|
||||||
|
C_PIECES= bootp_subr
|
||||||
|
C_FILES=$(C_PIECES:%=%.c)
|
||||||
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
||||||
|
|
||||||
|
SRCS=$(C_FILES)
|
||||||
|
OBJS=$(C_O_FILES)
|
||||||
|
|
||||||
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
||||||
|
include $(RTEMS_ROOT)/make/lib.cfg
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add local stuff here using +=
|
||||||
|
#
|
||||||
|
|
||||||
|
DEFINES +=
|
||||||
|
CPPFLAGS +=
|
||||||
|
CFLAGS +=
|
||||||
|
|
||||||
|
#
|
||||||
|
# Add your list of files to delete here. The config files
|
||||||
|
# already know how to delete some stuff, so you may want
|
||||||
|
# to just run 'make clean' first to see what gets missed.
|
||||||
|
# 'make clobber' already includes 'make clean'
|
||||||
|
#
|
||||||
|
|
||||||
|
CLEAN_ADDITIONS += $(LIB)
|
||||||
|
CLOBBER_ADDITIONS +=
|
||||||
|
|
||||||
|
all: ${ARCH} $(LIB)
|
||||||
|
|
||||||
|
$(LIB): $(SRCS) ${OBJS}
|
||||||
|
$(make-library)
|
||||||
Reference in New Issue
Block a user