Changeset 2543311 in rtems
- Timestamp:
- 09/21/01 14:02:27 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ceb9f8f
- Parents:
- ed13346
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libmisc/ChangeLog
red13346 r2543311 1 2001-09-14 Joel Sherrill <joel@OARcorp.com> 2 3 * configure.in, rootfs/Makefile.am: Added conditional to make sure 4 rootfs does not get built with networking is disabled. Also 5 added include of compile.am to rootfs/Makefile.am. 6 * wrapup/Makefile.am: Added rootfs conditionally if networking enabled. 7 1 8 2001-09-19 Chris Johns <ccj@acm.org> 2 9 -
c/src/libmisc/configure.in
red13346 r2543311 14 14 15 15 RTEMS_ENABLE_BARE 16 RTEMS_ENABLE_NETWORKING 16 17 17 18 RTEMS_ENV_RTEMSBSP 18 19 19 RTEMS_CHECK_CPU 20 20 RTEMS_CANONICAL_HOST … … 27 27 RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) 28 28 RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) 29 RTEMS_CHECK_NETWORKING(RTEMS_BSP) 29 30 30 31 AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") 32 AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes") 31 33 32 34 # Explicitly list all Makefiles here -
c/src/libmisc/rootfs/Makefile.am
red13346 r2543311 16 16 17 17 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 18 include $(top_srcdir)/../../../automake/compile.am 18 19 include $(top_srcdir)/../../../automake/lib.am 19 20 … … 33 34 $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) 34 35 36 if HAS_NETWORKING 35 37 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB) 38 endif 36 39 37 40 .PRECIOUS: $(LIB) -
c/src/libmisc/wrapup/Makefile.am
red13346 r2543311 12 12 include $(top_srcdir)/../../../automake/lib.am 13 13 14 if HAS_NETWORKING 15 NETLIBS=../rootfs/$(ARCH)/librootfs-tmp.a 16 endif 17 14 18 TMP_LIBS = ../monitor/$(ARCH)/libmonitor-tmp.a \ 15 19 ../untar/$(ARCH)/libuntar-tmp.a ../stackchk/$(ARCH)/libstackchk-tmp.a \ … … 17 21 ../shell/$(ARCH)/libshell-tmp.a \ 18 22 ../dumpbuf/$(ARCH)/libdumpbuf-tmp.a ../devnull/$(ARCH)/libdevnull-tmp.a \ 19 ../mw-fb/$(ARCH)/libmw-fb-tmp.a 23 ../mw-fb/$(ARCH)/libmw-fb-tmp.a $(NETLIBS) 20 24 21 25 $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) -
cpukit/libmisc/ChangeLog
red13346 r2543311 1 2001-09-14 Joel Sherrill <joel@OARcorp.com> 2 3 * configure.in, rootfs/Makefile.am: Added conditional to make sure 4 rootfs does not get built with networking is disabled. Also 5 added include of compile.am to rootfs/Makefile.am. 6 * wrapup/Makefile.am: Added rootfs conditionally if networking enabled. 7 1 8 2001-09-19 Chris Johns <ccj@acm.org> 2 9 -
cpukit/libmisc/wrapup/Makefile.am
red13346 r2543311 12 12 include $(top_srcdir)/../../../automake/lib.am 13 13 14 if HAS_NETWORKING 15 NETLIBS=../rootfs/$(ARCH)/librootfs-tmp.a 16 endif 17 14 18 TMP_LIBS = ../monitor/$(ARCH)/libmonitor-tmp.a \ 15 19 ../untar/$(ARCH)/libuntar-tmp.a ../stackchk/$(ARCH)/libstackchk-tmp.a \ … … 17 21 ../shell/$(ARCH)/libshell-tmp.a \ 18 22 ../dumpbuf/$(ARCH)/libdumpbuf-tmp.a ../devnull/$(ARCH)/libdevnull-tmp.a \ 19 ../mw-fb/$(ARCH)/libmw-fb-tmp.a 23 ../mw-fb/$(ARCH)/libmw-fb-tmp.a $(NETLIBS) 20 24 21 25 $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
Note: See TracChangeset
for help on using the changeset viewer.