source: rtems/cpukit/wrapup/Makefile.am @ b8caf37

4.104.114.84.95
Last change on this file since b8caf37 was 20db683, checked in by Joel Sherrill <joel.sherrill@…>, on 01/06/02 at 20:22:06

2002-01-06 Joel Sherrill <joel@…>

  • wrapup/.cvsignore: Readded.
  • include/.cvsignore: New file.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = librtemscpu
8LIB = $(ARCH)/$(LIBNAME).a
9
10include $(top_srcdir)/../../../automake/multilib.am
11include $(top_srcdir)/../../../automake/compile.am
12include $(top_srcdir)/../../../automake/lib.am
13
14CPU_OBJS = $(wildcard ../score/cpu/$(RTEMS_CPU)/$(ARCH)/*.rel)
15CORE_OBJS = $(wildcard ../score/src/$(ARCH)/*.o)
16SAPI_OBJS = $(wildcard ../sapi/src/$(ARCH)/*.o)
17RTEMS_OBJS = $(wildcard ../rtems/src/$(ARCH)/*.o)
18
19if HAS_POSIX
20POSIX_OBJS = $(wildcard ../posix/src/$(ARCH)/*.o)
21endif
22
23if HAS_ITRON
24ITRON_OBJS = $(wildcard ../itron/src/$(ARCH)/*.o)
25endif
26
27OBJS = $(CPU_OBJS) $(CORE_OBJS) $(RTEMS_OBJS) $(SAPI_OBJS) \
28    $(POSIX_OBJS) $(ITRON_OBJS)
29
30SIZE_RTEMS = $(SHELL) $(PROJECT_TOPdir)/tools/cpu/generic/size_rtems
31
32$(LIB): ${OBJS}
33        $(make-library)
34
35TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a
36
37$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
38        $(INSTALL_DATA) $< $@
39
40all-local: ${ARCH} $(TMPINSTALL_FILES)
41
42include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.