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.
32 lines
567 B
Makefile
32 lines
567 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
LIB = $(ARCH)/lib.a
|
|
|
|
C_FILES = getprotoby.c rtems_bsdnet_ntp.c ftpfs.c syslog.c tftpDriver.c
|
|
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
|
|
|
include $(top_srcdir)/automake/multilib.am
|
|
include $(top_srcdir)/automake/compile.am
|
|
include $(top_srcdir)/automake/lib.am
|
|
|
|
#
|
|
# Add local stuff here using +=
|
|
#
|
|
|
|
AM_CPPFLAGS += -DNOPOLL -DNOSELECT
|
|
|
|
if HAS_NETWORKING
|
|
$(LIB): $(OBJS)
|
|
$(make-library)
|
|
|
|
all-local: $(ARCH) $(LIB)
|
|
endif
|
|
|
|
.PRECIOUS: $(LIB)
|
|
|
|
EXTRA_DIST = README getprotoby.c rtems_bsdnet_ntp.c syslog.c tftpDriver.c
|
|
|
|
include $(top_srcdir)/automake/local.am
|