source: rtems/testsuites/samples/base_mp/node1/Makefile.am @ fd35059

4.104.114.84.95
Last change on this file since fd35059 was 1838993, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/06/05 at 10:56:36

2005-01-06 Ralf Corsepius <ralf.corsepius@…>

  • base_mp/node1/Makefile.am, base_mp/node2/Makefile.am: Remove LIB_VARIANT.
  • Property mode set to 100644
File size: 844 bytes
Line 
1##
2##  $Id$
3##
4
5NODE = 1
6SAMPLE = base_mp-node$(NODE)
7PGM = ${ARCH}/$(SAMPLE).exe
8
9MANAGERS = io mp
10
11C_FILES = ../init.c ../apptask.c
12C_O_FILES = $(C_FILES:../%.c=${ARCH}/%.$(OBJEXT))
13
14$(ARCH)/%.$(OBJEXT): ../%.c $(ARCH)/$(dirstamp)
15        ${COMPILE} -o $@ -c $<
16
17H_FILES = system.h
18
19DOCTYPES = doc scn
20DOCS = $(DOCTYPES:%=base_mp.%)
21
22SRCS = $(DOCS) $(C_FILES) $(H_FILES)
23OBJS = $(C_O_FILES)
24
25PRINT_SRCS = $(DOCS)
26
27include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
28include $(top_srcdir)/../automake/compile.am
29include $(top_srcdir)/../automake/leaf.am
30include $(top_srcdir)/sample.am
31
32AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I.
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38${PGM}: $(OBJS) $(LINK_FILES)
39        $(make-exe)
40
41all-local: $(TMPINSTALL_FILES)
42
43EXTRA_DIST = $(DOCS)
44
45CLEANFILES = $(TMPINSTALL_FILES)
46
47include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.