forked from Imagelibrary/rtems
* configure.ac: Remove (Merged into ../configure.ac). * Makefile.am, libc/Makefile.am, lib/Makefile.am, wrapup/Makefile.am: Reflect having merged configure.ac into ../configure.ac. * kern/kern_mib.c: Use RTEMS_VERSION to setup osrelease.
23 lines
425 B
Makefile
23 lines
425 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
NET_O_PIECES = lib libc
|
|
OBJS = ../$(ARCH)/*.$(OBJEXT)
|
|
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
|
|
|
|
if HAS_NETWORKING
|
|
$(LIB): $(OBJS)
|
|
$(make-library)
|
|
|
|
all-local: $(ARCH) $(LIB)
|
|
endif
|
|
|
|
include $(top_srcdir)/automake/local.am
|