source: rtems/c/src/tests/samples/cdtest/Makefile.am @ 15c4b4c5

4.104.114.84.95
Last change on this file since 15c4b4c5 was 15c4b4c5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/19/01 at 17:21:22

2001-09-19 Ralf Corsepius <corsepiu@…>

  • unlimited/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_mp/node2/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_mp/node1/Makefile.am: include leaf.am instead of leaf.cfg.
  • hello/Makefile.am: include leaf.am instead of leaf.cfg.
  • base_sp/Makefile.am: include leaf.am instead of leaf.cfg.
  • paranoia/Makefile.am: include leaf.am instead of leaf.cfg.
  • cdtest/Makefile.am: include leaf.am instead of leaf.cfg, use make-cxx-exe.
  • ticker/Makefile.am: include leaf.am instead of leaf.cfg.
  • minimum/Makefile.am: include leaf.am instead of leaf.cfg.
  • Property mode set to 100644
File size: 914 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7SAMPLE = cdtest
8PGM = ${ARCH}/$(SAMPLE).exe
9
10MANAGERS = all
11
12C_FILES = init.c
13C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
14
15CC_FILES = main.cc
16CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)
17
18H_FILES = system.h
19noinst_HEADERS = $(H_FILES)
20
21DOCTYPES = scn
22DOCS = $(DOCTYPES:%=$(SAMPLE).%)
23
24SRCS = $(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES)
25OBJS = $(C_O_FILES) $(CC_O_FILES)
26
27PRINT_SRCS = $(DOCS)
28
29include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
30include $(top_srcdir)/../../../../automake/compile.am
31include $(top_srcdir)/../../../../automake/leaf.am
32include $(top_srcdir)/sample.am
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38if HAS_CXX
39LD_LIBS += $(CPLUS_LD_LIBS)
40
41${PGM}: $(OBJS) $(LINK_FILES)
42        $(make-cxx-exe)
43
44all-local: ${ARCH} $(TMPINSTALL_FILES)
45else
46all-local:
47endif
48
49EXTRA_DIST = $(C_FILES) $(CC_FILES) $(DOCS)
50
51include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.