source: rtems/testsuites/itrontests/itronhello/Makefile.am @ 7e38877

4.104.114.84.95
Last change on this file since 7e38877 was 7e38877, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/11/05 at 09:03:24

Eliminate TEST.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5PGM = ${ARCH}/itronhello.exe
6
7MANAGERS = all
8
9noinst_LIBRARIES = lib.a
10lib_a_SOURCES = init.c system.h
11
12DOCS = itronhello.doc itronhello.scn
13
14OBJS = $(lib_a_OBJECTS)
15
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../automake/compile.am
19include $(top_srcdir)/../automake/leaf.am
20
21project_bspdir=$(PROJECT_ROOT)
22
23$(project_bspdir)/tests/$(dirstamp):
24        @$(mkdir_p) $(project_bspdir)/tests
25        @: > $(project_bspdir)/tests/$(dirstamp)
26
27$(project_bspdir)/tests/itronhello.exe: $(PGM) $(project_bspdir)/tests/$(dirstamp)
28        $(INSTALL_PROGRAM) $< $@
29
30$(project_bspdir)/tests/screens/itrontests/$(dirstamp):
31        @$(mkdir_p) $(project_bspdir)/tests/screens/itrontests
32        @: > $(project_bspdir)/tests/screens/itrontests/$(dirstamp)
33
34$(project_bspdir)/tests/screens/itrontests/itronhello.scn: itronhello.scn $(project_bspdir)/tests/screens/itrontests/$(dirstamp)
35        $(INSTALL_DATA) $< $@
36
37TMPINSTALL_FILES = \
38$(project_bspdir)/tests/itronhello.exe \
39$(project_bspdir)/tests/screens/itrontests/itronhello.scn
40
41$(PGM): ${ARCH}/$(dirstamp)
42
43
44#
45# (OPTIONAL) Add local stuff here using +=
46#
47
48AM_CPPFLAGS += -I$(top_srcdir)/../support/include
49
50${PGM}: $(OBJS) $(LINK_FILES)
51        $(make-exe)
52
53all-local: $(TMPINSTALL_FILES)
54
55EXTRA_DIST = $(DOCS)
56
57CLEANFILES = $(TMPINSTALL_FILES)
58
59include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.