URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [wrapup/] [Makefile.am] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
#### Makefile.am,v 1.21 2002/08/01 12:01:08 ralf Exp##LIB = $(project_libdir)$(MULTISUBDIR)/librtemscpu$(LIB_VARIANT).ainclude $(top_srcdir)/automake/multilib.aminclude $(top_srcdir)/automake/compile.aminclude $(top_srcdir)/automake/lib.amif LIBSCORECPUCPU_OBJS = ../score/cpu/$(RTEMS_CPU)/$(ARCH)/libscorecpu.aendifCORE_OBJS = ../score/src/$(ARCH)/libscore.aSAPI_OBJS = ../sapi/src/$(ARCH)/libsapi.aRTEMS_OBJS = ../rtems/src/$(ARCH)/librtems.aif HAS_POSIXPOSIX_OBJS = ../posix/src/$(ARCH)/libposix.aendifif HAS_ITRONITRON_OBJS = ../itron/src/$(ARCH)/libitron.aendifLIBCSUPPORT_OBJS = ../libcsupport/$(ARCH)/libcsupport.aLIBBLOCK_OBJS = ../libblock/$(ARCH)/libblock.aif !UNIXLIBDOSFS_OBJS = ../libfs/src/dosfs/$(ARCH)/libdosfs.aendifLIBIMFS_OBJS = ../libfs/src/imfs/$(ARCH)/libimfs.aif HAS_NETWORKINGNETWORKING_OBJS = \../libnetworking/wrapup/$(ARCH)/libnetworking.aendifif LIBRPCLIBRPC_OBJS = \../librpc/src/rpc/$(ARCH)/librpc.a \../librpc/src/xdr/$(ARCH)/libxdr.aendifOBJS = $(CPU_OBJS) $(CORE_OBJS) $(RTEMS_OBJS) $(SAPI_OBJS) \$(POSIX_OBJS) $(ITRON_OBJS) $(LIBCSUPPORT_OBJS) \$(LIBBLOCK_OBJS) $(LIBDOSFS_OBJS) $(LIBIMFS_OBJS) \$(NETWORKING_OBJS) $(LIBRPC_OBJS)$(LIB): ${OBJS}rm -f $@test -d $(ARCH) || mkdir $(ARCH)rm -rf $(ARCH)/*for f in $(OBJS); do \case $$f in \*.$(OBJEXT) | *.rel) \if test -f $(ARCH)/`basename $$f`; then \if cmp $$f $(ARCH)/`basename $$f`; then \true; \else \echo 1>&2 "ERROR -- `basename $$f` in multiple files"; \exit 1; \fi; \else \cp $$f $(ARCH)/; \chmod a-w $(ARCH)/`basename $$f`; \fi; \;; \*.a) \cd $(ARCH); \$(AR) xv ../$$f || exit 1; \chmod a-w * ; \cd ..; \;; \esac; \donetest -d $(project_libdir)$(MULTISUBDIR) || $(mkinstalldirs) $(project_libdir)$(MULTISUBDIR)$(AR) rc $@ $(ARCH)/*rm -f $(ARCH)/*.$(OBJEXT)$(RANLIB) $@TMPINSTALL_FILES += $(project_libdir)$(MULTISUBDIR)/librtemscpu$(LIB_VARIANT).acpulibdir = $(libdir)cpulib_DATA = $(LIB)all-local: ${ARCH} $(TMPINSTALL_FILES)include $(top_srcdir)/automake/local.am
Go to most recent revision | Compare with Previous | Blame | View Log
