source: rtems/testsuites/libtests/rtems++/Makefile.am @ 8b695b9

4.104.114.84.95
Last change on this file since 8b695b9 was 8b695b9, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:44:08

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • cpuuse/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • malloctest/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • monitor/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • putenvtest/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems++/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtmonuse/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • stackchk/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • termios/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 866 bytes
Line 
1##
2## $Id$
3##
4
5
6TEST = rtems++
7
8MANAGERS = event io msg sem signal timer rate_monotonic
9
10CC_FILES = Init.cc Task1.cc Task2.cc Task3.cc
11CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)
12
13H_FILES = System.h
14noinst_HEADERS = $(H_FILES)
15
16DOCTYPES = scn doc
17DOCS = $(DOCTYPES:%=$(TEST).%)
18
19SRCS = $(DOCS) $(C_FILES) $(H_FILES)
20OBJS = $(CC_O_FILES)
21
22PRINT_SRCS = $(DOCS)
23
24PGM = ${ARCH}/$(TEST).exe
25
26include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
27include $(top_srcdir)/../../../../automake/compile.am
28include $(top_srcdir)/../../../../automake/leaf.am
29include $(top_srcdir)/libtests.am
30
31#
32# (OPTIONAL) Add local stuff here using +=
33#
34
35LD_LIBS = -lrtems++$(LIB_VARIANT)
36
37if HAS_CXX
38
39${PGM}: $(OBJS) $(LINK_FILES)
40        $(make-cxx-exe)
41
42all-local: $(ARCH) $(TMPINSTALL_FILES)
43else
44all-local:
45endif
46
47EXTRA_DIST = $(CC_FILES) $(DOCS)
48
49include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.