source: rtems/testsuites/samples/iostream/Makefile.am @ e12ba0e

4.104.114.84.95
Last change on this file since e12ba0e was e12ba0e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/10/04 at 15:59:59

2004-05-10 Ralf Corsepius <ralf_corsepius@…>

  • iostream/Makefile.am, iostream/init.cc, iostream/iostream.doc, iostream/iostream.scn, iostream/system.h: New (C++ variant of hello).
  • Property mode set to 100644
File size: 739 bytes
Line 
1##
2##  $Id$
3##
4
5SAMPLE = iostream
6PGM = ${ARCH}/$(SAMPLE).exe
7
8MANAGERS = io
9
10CC_FILES = init.cc
11CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.$(OBJEXT))
12
13H_FILES = system.h
14noinst_HEADERS = $(H_FILES)
15
16DOCTYPES = doc scn
17DOCS = $(DOCTYPES:%=$(SAMPLE).%)
18
19SRCS = $(DOCS) $(CC_FILES) $(H_FILES)
20OBJS = $(CC_O_FILES)
21
22PRINT_SRCS = $(DOCS)
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
25include $(top_srcdir)/../automake/compile.am
26include $(top_srcdir)/../automake/leaf.am
27include $(top_srcdir)/sample.am
28
29#
30# (OPTIONAL) Add local stuff here using +=
31#
32
33all-local: $(TMPINSTALL_FILES)
34
35${PGM}: $(OBJS) $(LINK_FILES)
36        $(make-cxx-exe)
37
38EXTRA_DIST = $(C_FILES) $(DOCS)
39
40CLEANFILES = $(TMPINSTALL_FILES)
41
42include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.