source: rtems/c/src/librtems++/src/Makefile.am @ c1c1f33

4.104.114.84.95
Last change on this file since c1c1f33 was 23e3f642, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/99 at 14:10:05

Missed in previous automake conversion patches from Ralf Corsepius
<corsepiu@…>.

  • Property mode set to 100644
File size: 734 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = librtems++
8LIB = ${ARCH}/${LIBNAME}.a
9
10CC_FILES = rtemsEvent.cc rtemsInterrupt.cc rtemsMessageQueue.cc \
11   rtemsSemaphore.cc rtemsStatusCode.cc rtemsTask.cc rtemsTimer.cc
12CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)
13
14SRCS = $(CC_FILES)
15OBJS = $(CC_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../automake/lib.am
19
20AM_CFLAGS += $(LIBC_DEFINES)
21
22TMPINSTALL_FILES += \
23$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
24
25$(LIB): ${OBJS}
26        $(make-library)
27
28$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
29        $(INSTALL_DATA) $< $@
30
31all: ${ARCH} $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
32
33include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.