source: rtems/c/src/tests/mptests/mp05/node1/Makefile.in @ b1a4ca8

4.104.114.84.95
Last change on this file since b1a4ca8 was b1a4ca8, checked in by Joel Sherrill <joel.sherrill@…>, on 04/15/97 at 17:40:38

Added line to install test screens so difftest does not have to have
a path back into the source tree. This would be better for binary
distributions as well since you now have the correct output at the
install point.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@:@srcdir@/..
9
10NODE=1
11TEST=mp05
12PGM=${ARCH}/$(TEST)-node$(NODE).exe
13
14MANAGERS=io mp signal timer
15
16# C source names, if any, go here -- minus the .c
17C_PIECES=init asr task1
18C_FILES=$(C_PIECES:%=%.c)
19C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
20
21H_FILES=system.h
22
23DOCTYPES=doc scn
24DOCS=$(DOCTYPES:%=$(TEST).%)
25
26SRCS=$(DOCS) $(C_FILES) $(H_FILES)
27OBJS=$(C_O_FILES)
28
29PRINT_SRCS=$(DOCS)
30
31include $(RTEMS_CUSTOM)
32include $(PROJECT_ROOT)/make/leaf.cfg
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38DEFINES  += -DNODE_NUMBER=$(NODE)
39CPPFLAGS += -I.
40CFLAGS   +=
41
42LD_PATHS  +=
43LD_LIBS   +=
44LDFLAGS   +=
45
46#
47# Add your list of files to delete here.  The config files
48#  already know how to delete some stuff, so you may want
49#  to just run 'make clean' first to see what gets missed.
50#  'make clobber' already includes 'make clean'
51#
52
53CLEAN_ADDITIONS +=
54CLOBBER_ADDITIONS +=
55
56all:    ${ARCH} $(SRCS) $(PGM)
57        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests
58        $(INSTALL) $(srcdir)/$(TEST).scn \
59            ${PROJECT_RELEASE}/tests/screens/mptests/node$(NODE)/$(TEST).scn
60
61${PGM}: $(OBJS) $(LINK_FILES)
62        $(make-exe)
Note: See TracBrowser for help on using the repository browser.