source: rtems/c/src/tests/tmtests/tmck/Makefile.in @ b7852c2

4.104.114.84.95
Last change on this file since b7852c2 was b7852c2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/18/99 at 13:58:02

Patch rtems-rc-19991105-3.diff.gz from Ralf Corsepius
<corsepiu@…> which turns OPERATION_COUNT into a configure
time option.

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