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

4.104.114.84.95
Last change on this file since fef95c56 was fef95c56, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 05:18:59

2002-08-11 Ralf Corsepius <corsepiu@…>

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