mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-01 17:50:52 +08:00
24 lines
457 B
Makefile
24 lines
457 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
NET_O_PIECES = kern lib libc net netinet nfs rtems
|
|
OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT))
|
|
LIB = $(ARCH)/libnetworking.a
|
|
|
|
include $(top_srcdir)/../automake/multilib.am
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/lib.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
$(LIB): $(OBJS)
|
|
$(make-library)
|
|
|
|
all-local: $(ARCH) $(LIB)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|