source: rtems/c/src/tests/psxtests/psx06/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@
9
10TEST=psx06
11
12MANAGERS=all
13
14# C source names, if any, go here -- minus the .c
15C_PIECES=init task task2
16C_FILES=$(C_PIECES:%=%.c)
17C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
18
19H_FILES=system.h
20
21DOCTYPES=scn
22DOCS=$(DOCTYPES:%=$(TEST).%)
23
24SRCS=$(DOCS) $(C_FILES) $(H_FILES)
25OBJS=$(C_O_FILES)
26
27PRINT_SRCS=$(DOCS)
28
29PGM=${ARCH}/$(TEST).exe
30
31include $(RTEMS_CUSTOM)
32include $(PROJECT_ROOT)/make/leaf.cfg
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38DEFINES  +=
39CPPFLAGS +=
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/psxtests/$(TEST).scn
60
61${PGM}: $(OBJS) $(LINK_FILES)
62        $(make-exe)
Note: See TracBrowser for help on using the repository browser.