source: rtems/c/src/tests/itrontests/itronhello/Makefile.in @ 713b2ea

4.104.114.84.95
Last change on this file since 713b2ea was 442d0478, checked in by Joel Sherrill <joel.sherrill@…>, on 11/10/99 at 14:19:55

Combination of committing some new files which had been overlooked
and adding code which installed screens for itron tests.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = itronhello
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16TEST = itronhello
17PGM = ${ARCH}/$(TEST).exe
18
19MANAGERS = all
20
21# C source names, if any, go here -- minus the .c
22C_PIECES = init
23C_FILES = $(C_PIECES:%=%.c)
24C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
25
26H_FILES = system.h
27
28DOCTYPES = doc scn
29DOCS = $(DOCTYPES:%=$(TEST).%)
30
31SRCS = $(DOCS) $(C_FILES) $(H_FILES)
32OBJS = $(C_O_FILES)
33
34PRINT_SRCS = $(DOCS)
35
36PGM = ${ARCH}/$(TEST).exe
37
38include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
39include $(RTEMS_ROOT)/make/leaf.cfg
40
41INSTALL_CHANGE = @INSTALL_CHANGE@
42PACKHEX = @PACKHEX@
43mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
44
45INSTALLDIRS = $(PROJECT_RELEASE)/tests/screens/sptests
46
47$(INSTALLDIRS):
48        @$(mkinstalldirs) $(INSTALLDIRS)
49
50
51#
52# (OPTIONAL) Add local stuff here using +=
53#
54
55DEFINES +=
56CPPFLAGS +=
57CFLAGS +=
58
59LD_PATHS +=
60LD_LIBS +=
61LDFLAGS +=
62
63#
64# Add your list of files to delete here.  The config files
65#  already know how to delete some stuff, so you may want
66#  to just run 'make clean' first to see what gets missed.
67#  'make clobber' already includes 'make clean'
68#
69
70CLEAN_ADDITIONS +=
71CLOBBER_ADDITIONS +=
72
73all: ${ARCH} $(SRCS) $(PGM)
74        @$(INSTALL_VARIANT) -m 755 ${PGM} $(PROJECT_RELEASE)/tests
75        $(INSTALL_CHANGE) $(srcdir)/$(TEST).scn \
76            $(PROJECT_RELEASE)/tests/screens/itrontests/$(TEST).scn
77
78${PGM}: $(OBJS) $(LINK_FILES)
79        $(make-exe)
80
81Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
82        cd $(top_builddir) \
83         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.